diff --git a/sootup.core/src/test/java/sootup/core/graph/MutableBlockStmtGraphTest.java b/sootup.core/src/test/java/sootup/core/graph/MutableBlockStmtGraphTest.java index 92faac8bba..e8d938dbeb 100644 --- a/sootup.core/src/test/java/sootup/core/graph/MutableBlockStmtGraphTest.java +++ b/sootup.core/src/test/java/sootup/core/graph/MutableBlockStmtGraphTest.java @@ -20,12 +20,10 @@ import sootup.core.types.PrimitiveType; import sootup.core.types.UnknownType; import sootup.core.util.printer.BriefStmtPrinter; -import sootup.core.util.printer.JimplePrinter; @Tag("Java8") public class MutableBlockStmtGraphTest { - public JimplePrinter jimplePrinter = new JimplePrinter(); public final BriefStmtPrinter briefStmtPrinter = new BriefStmtPrinter(); BranchingStmt firstGoto = new JGotoStmt(StmtPositionInfo.getNoStmtPositionInfo()); diff --git a/sootup.java.bytecode.frontend/src/test/java/sootup/java/bytecode/frontend/interceptors/TrapTightenerTest.java b/sootup.java.bytecode.frontend/src/test/java/sootup/java/bytecode/frontend/interceptors/TrapTightenerTest.java index b75ceae543..52185a9306 100644 --- a/sootup.java.bytecode.frontend/src/test/java/sootup/java/bytecode/frontend/interceptors/TrapTightenerTest.java +++ b/sootup.java.bytecode.frontend/src/test/java/sootup/java/bytecode/frontend/interceptors/TrapTightenerTest.java @@ -24,7 +24,6 @@ import sootup.core.types.VoidType; import sootup.core.util.ImmutableUtils; import sootup.core.util.printer.BriefStmtPrinter; -import sootup.core.util.printer.JimplePrinter; import sootup.interceptors.TrapTightener; import sootup.java.core.JavaIdentifierFactory; import sootup.java.core.language.JavaJimple; @@ -35,7 +34,6 @@ @Tag(TestCategories.JAVA_8_CATEGORY) @Disabled("FIXME: needs .setTraps() adapted to MutableBlockStmtGraph") public class TrapTightenerTest { - public JimplePrinter jimplePrinter = new JimplePrinter(); public final BriefStmtPrinter briefStmtPrinter = new BriefStmtPrinter(); JavaIdentifierFactory factory = JavaIdentifierFactory.getInstance(); diff --git a/sootup.java.bytecode.frontend/src/test/java/sootup/java/bytecode/frontend/interceptors/UnreachableCodeEliminatorTest.java b/sootup.java.bytecode.frontend/src/test/java/sootup/java/bytecode/frontend/interceptors/UnreachableCodeEliminatorTest.java index 80a45f4dd2..a51c0bd906 100644 --- a/sootup.java.bytecode.frontend/src/test/java/sootup/java/bytecode/frontend/interceptors/UnreachableCodeEliminatorTest.java +++ b/sootup.java.bytecode.frontend/src/test/java/sootup/java/bytecode/frontend/interceptors/UnreachableCodeEliminatorTest.java @@ -24,7 +24,6 @@ import sootup.core.types.VoidType; import sootup.core.util.ImmutableUtils; import sootup.core.util.printer.BriefStmtPrinter; -import sootup.core.util.printer.JimplePrinter; import sootup.interceptors.UnreachableCodeEliminator; import sootup.java.core.JavaIdentifierFactory; import sootup.java.core.language.JavaJimple; @@ -35,7 +34,6 @@ @Tag(TestCategories.JAVA_8_CATEGORY) public class UnreachableCodeEliminatorTest { - public final JimplePrinter jimplePrinter = new JimplePrinter(); public final BriefStmtPrinter briefStmtPrinter = new BriefStmtPrinter(); JavaIdentifierFactory factory = JavaIdentifierFactory.getInstance();