Skip to content

Commit

Permalink
Fix edge case for inner class remapping to ensure same-package-preser…
Browse files Browse the repository at this point in the history
…ving-ness
  • Loading branch information
lukebemish committed Nov 12, 2024
1 parent ffd063b commit 7218a3c
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@ public static MappingTree fixInnerClasses(MappingTree tree) {
}
var firstSrcPart = parts[0];
var firstDstPart = dstParts[0];
if (!firstSrcPart.equals(firstDstPart)) {
continue;
}
var remappedFirstSrcPart = tree.mapClassName(firstSrcPart, targetNamespace);
if (remappedFirstSrcPart.equals(firstDstPart)) {
continue;
Expand Down

0 comments on commit 7218a3c

Please sign in to comment.