Skip to content

Commit

Permalink
Remove interchange and implementation structures from unused logging
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeEdgar committed Jan 25, 2021
1 parent 81a6d01 commit de4d862
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,9 @@ void setReferences(StructureType struct, Map<String, EDIType> types) {
void logUnusedTypes(Map<String, EDIType> types, Level level) {
if (LOGGER.isLoggable(level)) {
Set<String> unused = new HashSet<>(types.keySet());
unused.remove(StaEDISchema.INTERCHANGE_ID);
unused.remove(StaEDISchema.TRANSACTION_ID);
unused.remove(StaEDISchema.IMPLEMENTATION_ID);
unused.remove(ANY_COMPOSITE.getId());

types.values()
Expand Down

0 comments on commit de4d862

Please sign in to comment.