Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
DomCR committed Jan 24, 2025
1 parent 0f5f2d2 commit 9ec24f9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
2 changes: 0 additions & 2 deletions src/ACadSharp/IO/Templates/CadTableTemplate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ internal class CadTableTemplate<T> : CadTemplate<Table<T>>, ICadTableTemplate
{
public List<ulong> EntryHandles { get; } = new List<ulong>();

public List<string> EntryNames { get; } = new();

public CadTableTemplate(Table<T> tableControl) : base(tableControl) { }

public override void Build(CadDocumentBuilder builder)
Expand Down
5 changes: 0 additions & 5 deletions src/ACadSharp/Tables/Collections/TextStylesTable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,5 @@ public class TextStylesTable : Table<TextStyle>
internal TextStylesTable() : base() { }

internal TextStylesTable(CadDocument document) : base(document) { }

public override void Add(TextStyle item)
{
base.Add(item);
}
}
}

0 comments on commit 9ec24f9

Please sign in to comment.