Skip to content

Commit

Permalink
Merge pull request #470 from shifujun/repair_IDEA
Browse files Browse the repository at this point in the history
Minimal changes make IDEA 2023.2 work out-of-box
  • Loading branch information
chibash committed Dec 16, 2023
2 parents 3325b49 + 9dbf9e0 commit f74619e
Show file tree
Hide file tree
Showing 9 changed files with 2 additions and 27 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -151,8 +151,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>11</source>
<target>11</target>
<testSource>11</testSource>
<testTarget>11</testTarget>
<testCompilerArgument>-parameters</testCompilerArgument>
Expand Down
3 changes: 0 additions & 3 deletions src/test/javassist/Bench.java
Expand Up @@ -5,9 +5,6 @@
import javassist.compiler.*;

public class Bench extends JvstTestRoot {
public Bench(String name) {
super(name);
}

public void testProceed() throws Exception {
CtClass cc = sloader.get("test.BenchProceed");
Expand Down
3 changes: 0 additions & 3 deletions src/test/javassist/JvstTest.java
Expand Up @@ -20,9 +20,6 @@ public class JvstTest extends JvstTestRoot {
java9 = javassist.bytecode.ClassFile.MAJOR_VERSION
>= javassist.bytecode.ClassFile.JAVA_9;
}
public JvstTest(String name) {
super(name);
}

public void testConfig() {
// is the value of PATH correct?
Expand Down
3 changes: 0 additions & 3 deletions src/test/javassist/JvstTest2.java
Expand Up @@ -14,9 +14,6 @@
@SuppressWarnings({"rawtypes","unused"})
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class JvstTest2 extends JvstTestRoot {
public JvstTest2(String name) {
super(name);
}

public void testInsertAt() throws Exception {
CtClass cc = sloader.get("test2.InsertAt");
Expand Down
3 changes: 0 additions & 3 deletions src/test/javassist/JvstTest3.java
Expand Up @@ -7,9 +7,6 @@

@SuppressWarnings({"rawtypes","unchecked","unused"})
public class JvstTest3 extends JvstTestRoot {
public JvstTest3(String name) {
super(name);
}

public void testAnnotation() throws Exception {
CtClass cc = sloader.get("test3.AnnoTest");
Expand Down
3 changes: 0 additions & 3 deletions src/test/javassist/JvstTest4.java
Expand Up @@ -16,9 +16,6 @@
@SuppressWarnings({"rawtypes","unchecked","unused"})
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class JvstTest4 extends JvstTestRoot {
public JvstTest4(String name) {
super(name);
}

public void testInsertLocalVars() throws Exception {
CtClass cc = sloader.get("test4.LocalVars");
Expand Down
3 changes: 0 additions & 3 deletions src/test/javassist/JvstTest5.java
Expand Up @@ -25,9 +25,6 @@

@SuppressWarnings({"rawtypes","unchecked","unused"})
public class JvstTest5 extends JvstTestRoot {
public JvstTest5(String name) {
super(name);
}

public void testDollarClassInStaticMethod() throws Exception {
CtClass cc = sloader.makeClass("test5.DollarClass");
Expand Down
4 changes: 0 additions & 4 deletions src/test/javassist/JvstTestRoot.java
Expand Up @@ -13,10 +13,6 @@ public class JvstTestRoot extends TestCase {
ClassPool sloader, dloader;
Loader cloader;

public JvstTestRoot(String name) {
super(name);
}

protected void print(String msg) {
System.out.println(msg);
}
Expand Down
3 changes: 0 additions & 3 deletions src/test/javassist/bytecode/InsertGap0.java
Expand Up @@ -159,9 +159,6 @@ public int run2(int x) {

@SuppressWarnings({"rawtypes","unchecked","unused"})
public final class InsertGap0 extends JvstTestRoot {
public InsertGap0(String name) {
super(name);
}

public void testExample() throws Throwable {
ClassPool pool = ClassPool.getDefault();
Expand Down

0 comments on commit f74619e

Please sign in to comment.