Parcourir la source

Address feedback from PR

tags/rel_3_26_0_ga
Rich Bolen il y a 4 ans
Parent
révision
dd3612498a
2 fichiers modifiés avec 5 ajouts et 5 suppressions
  1. 2
    2
      pom.xml
  2. 3
    3
      src/main/javassist/bytecode/ConstPool.java

+ 2
- 2
pom.xml Voir le fichier

@@ -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 Voir le fichier

@@ -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;

Chargement…
Annuler
Enregistrer