Browse Source

Address feedback from PR

tags/rel_3_26_0_ga
Rich Bolen 4 years ago
parent
commit
dd3612498a
2 changed files with 5 additions and 5 deletions
  1. 2
    2
      pom.xml
  2. 3
    3
      src/main/javassist/bytecode/ConstPool.java

+ 2
- 2
pom.xml View File

@@ -151,8 +151,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>9</source>
<target>9</target>
<source>1.7</source>
<target>1.7</target>
<testSource>11</testSource>
<testTarget>11</testTarget>
<testCompilerArgument>-parameters</testCompilerArgument>

+ 3
- 3
src/main/javassist/bytecode/ConstPool.java View File

@@ -1405,9 +1405,9 @@ public final class ConstPool
case MethodTypeInfo.tag : // 16
info = new MethodTypeInfo(in, numOfItems);
break;
case DynamicInfo.tag : // 17
info = new DynamicInfo(in, numOfItems);
break;
case DynamicInfo.tag : // 17
info = new DynamicInfo(in, numOfItems);
break;
case InvokeDynamicInfo.tag : // 18
info = new InvokeDynamicInfo(in, numOfItems);
break;

Loading…
Cancel
Save