Skip to content

Commit

Permalink
avoid putting obf mappings in the tree
Browse files Browse the repository at this point in the history
  • Loading branch information
ix0rai committed Jan 3, 2024
1 parent 339f56b commit 7e51853
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,8 @@ private static void cleanMappingStack(int indentation, Deque<MappingPair<?, RawE
while (indentation < mappingStack.size()) {
MappingPair<?, RawEntryMapping> pair = mappingStack.pop();
if (pair.getMapping() != null) {
mappings.insert(pair.getEntry(), pair.getMapping().bake());
EntryMapping mapping = pair.getMapping().bake();
mappings.insert(pair.getEntry(), mapping.equals(EntryMapping.DEFAULT) ? null : mapping);
}
}
}
Expand Down

0 comments on commit 7e51853

Please sign in to comment.