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

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

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

case MethodTypeInfo.tag : // 16 case MethodTypeInfo.tag : // 16
info = new MethodTypeInfo(in, numOfItems); info = new MethodTypeInfo(in, numOfItems);
break; 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 case InvokeDynamicInfo.tag : // 18
info = new InvokeDynamicInfo(in, numOfItems); info = new InvokeDynamicInfo(in, numOfItems);
break; break;

Loading…
Cancel
Save