Skip to content

Commit

Permalink
skip code in scan annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
friendlyhj committed Nov 8, 2024
1 parent ea9fd21 commit f25c2f3
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 f25c2f3

Please sign in to comment.