Skip to content

Commit

Permalink
Fix #17 - regenerated Attributes
Browse files Browse the repository at this point in the history
Since Class names are now Uppercase the logic to remove subtypes was broken.
  • Loading branch information
andyward committed Nov 2, 2023
1 parent 2fc6ee5 commit dd1a206
Show file tree
Hide file tree
Showing 3 changed files with 714 additions and 700 deletions.
2 changes: 1 addition & 1 deletion ids-lib.codegen/IfcSchema_AttributesGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ static public string Execute()

foreach (var sub in thisClass.AllSubTypes)
{
OnlyTopClasses.Remove(sub.Name);
OnlyTopClasses.Remove(sub.ExpressNameUpper);
}
}

Expand Down
Loading

0 comments on commit dd1a206

Please sign in to comment.