Skip to content

Commit

Permalink
Merge pull request #384 from TestBoost/master
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswhocodes authored Dec 10, 2023
2 parents 114b796 + 7788103 commit c3b463b
Showing 1 changed file with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
import org.adoptopenjdk.jitwatch.model.bytecode.MemberBytecode;
import org.adoptopenjdk.jitwatch.model.bytecode.SourceMapper;
import org.adoptopenjdk.jitwatch.process.compiler.CompilerJava;
import org.junit.After;
import org.junit.Before;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;

/*
Expand Down Expand Up @@ -69,19 +69,19 @@
*/
public class TestBytecodeLoaderWithInnerClasses
{
private String classNameOuter = "TestInner";
private String classNameInner1 = "TestInner$Inner1";
private String classNameInner2 = "TestInner$Inner1$Inner2";
private static String classNameOuter = "TestInner";
private static String classNameInner1 = "TestInner$Inner1";
private static String classNameInner2 = "TestInner$Inner1$Inner2";

private Path pathToSourceDir;
private Path pathToTempClassDir;
private List<String> classpathLocations;
private static Path pathToSourceDir;
private static Path pathToTempClassDir;
private static List<String> classpathLocations;

private ClassBC classBytecodeForOuter;
private ClassBC classBytecodeForInner1;
private ClassBC classBytecodeForInner2;
private static ClassBC classBytecodeForOuter;
private static ClassBC classBytecodeForInner1;
private static ClassBC classBytecodeForInner2;

@Before public void setUp()
@BeforeClass public static void setUp()
{
try
{
Expand Down Expand Up @@ -133,7 +133,7 @@ public class TestBytecodeLoaderWithInnerClasses
classBytecodeForInner2 = classBytecodeListForOuter.get(2);
}

@After public void tearDown()
@AfterClass public static void tearDown()
{
}

Expand Down

0 comments on commit c3b463b

Please sign in to comment.