瀏覽代碼

Address feedback from PR

tags/rel_3_26_0_ga
Rich Bolen 4 年之前
父節點
當前提交
dd3612498a
共有 2 個檔案被更改,包括 5 行新增5 行删除
  1. 2
    2
      pom.xml
  2. 3
    3
      src/main/javassist/bytecode/ConstPool.java

+ 2
- 2
pom.xml 查看文件

@@ -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 查看文件

@@ -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…
取消
儲存