Browse Source

fixed JASSIST-178

git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@687 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
tags/rel_3_17_1_ga
chiba 11 years ago
parent
commit
9133f1b1a4
2 changed files with 10 additions and 5 deletions
  1. 3
    3
      pom.xml
  2. 7
    2
      src/test/javassist/bytecode/BytecodeTest.java

+ 3
- 3
pom.xml View File

@@ -7,7 +7,7 @@
Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
simple. It is a class library for editing bytecodes in Java.
</description>
<version>3.17.0-GA</version>
<version>3.17.1-GA</version>
<name>Javassist</name>
<url>http://www.javassist.org/</url>

@@ -124,8 +124,8 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>

+ 7
- 2
src/test/javassist/bytecode/BytecodeTest.java View File

@@ -814,8 +814,13 @@ public class BytecodeTest extends TestCase {

cf.addAttribute(new BootstrapMethodsAttribute(cp, bms));
cc.writeFile();
Object obj = make(cc.getName());
assertEquals(9, invoke(obj, "test"));
try {
Object obj = make(cc.getName());
assertEquals(9, invoke(obj, "test"));
}
catch (ClassFormatError e) {
System.out.println("Indy: " + e);
}

ClassPool cp2 = new ClassPool();
cp2.appendClassPath(".");

Loading…
Cancel
Save