Skip to content

Commit

Permalink
Another missing Java version change
Browse files Browse the repository at this point in the history
  • Loading branch information
uschindler committed Mar 23, 2024
1 parent 6d42f04 commit 228248c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/de/thetaphi/forbiddenapis/AsmUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ private static byte[] readStream(final InputStream in) throws IOException {
@SuppressWarnings("unused")
public static ClassReader readAndPatchClass(InputStream in) throws IOException {
final byte[] bytecode = readStream(in);
if (false) patchClassMajorVersion(bytecode, Opcodes.V22 + 1, Opcodes.V22);
if (false) patchClassMajorVersion(bytecode, Opcodes.V23 + 1, Opcodes.V23);
return new ClassReader(bytecode);
}

Expand Down

0 comments on commit 228248c

Please sign in to comment.