Skip to content

Commit

Permalink
Merge pull request DomCR#507 from DomCR/avoid-write-table-entity
Browse files Browse the repository at this point in the history
avoid write TableEntities
  • Loading branch information
DomCR authored Dec 15, 2024
2 parents eb7a641 + 2ba804f commit d732283
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ private void writeEntity(Entity entity)
//Ignored Entities
switch (entity)
{
case TableEntity:
case UnknownEntity:
case Solid3D:
case Mesh:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ protected void writeEntity<T>(T entity)
//TODO: Implement complex entities in a separated branch
switch (entity)
{
case TableEntity:
case Solid3D:
case UnknownEntity:
this.notify($"Entity type not implemented : {entity.GetType().FullName}", NotificationType.NotImplemented);
Expand Down

0 comments on commit d732283

Please sign in to comment.