Skip to content

Commit

Permalink
skip code in scan annotations (#239)
Browse files Browse the repository at this point in the history
  • Loading branch information
friendlyhj authored Nov 8, 2024
1 parent ea9fd21 commit 2b9d22f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public ASMModParser(InputStream stream) throws IOException
try
{
ClassReader reader = new ClassReader(stream);
reader.accept(new ModClassVisitor(this), 0);
reader.accept(new ModClassVisitor(this), ClassReader.SKIP_CODE);
}
catch (Exception ex)
{
Expand Down

0 comments on commit 2b9d22f

Please sign in to comment.