Ver código fonte

Address feedback from PR

tags/rel_3_26_0_ga
Rich Bolen 4 anos atrás
pai
commit
dd3612498a
2 arquivos alterados com 5 adições e 5 exclusões
  1. 2
    2
      pom.xml
  2. 3
    3
      src/main/javassist/bytecode/ConstPool.java

+ 2
- 2
pom.xml Ver arquivo

@@ -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 Ver arquivo

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

Carregando…
Cancelar
Salvar