Skip to content

Commit

Permalink
Fix Desc.args being stripped in the remapping process
Browse files Browse the repository at this point in the history
  • Loading branch information
Geolykt committed Sep 30, 2024
1 parent 6736d5f commit dcfe9ed
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,13 @@ public AnnotationVisitor visitArray(String name) {
@Override
public void visit(String name, Object value) {
argArray.add(Objects.requireNonNull((Type) value));
super.visit(name, value);
}

@Override
public void visitEnd() {
args = Collections.unmodifiableList(argArray);
super.visitEnd();
}
};
} else {
Expand Down

0 comments on commit dcfe9ed

Please sign in to comment.