Skip to content

Commit

Permalink
Fix Desc.args being stripped in the remapping process (#136)
Browse files Browse the repository at this point in the history
Fixes #135
  • Loading branch information
Geolykt authored Oct 15, 2024
1 parent 6736d5f commit dba9f1f
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 dba9f1f

Please sign in to comment.