# HG changeset patch # User Thomas Wuerthinger # Date 1420997648 -3600 # Node ID 53d2d5e8462a8bdaca31011df557f84bc7a6fbe0 # Parent 5a21cac1968f4a744bdd0eb540d66e3fc609485b Remove unused class ExceptionInfo. diff -r 5a21cac1968f -r 53d2d5e8462a graal/com.oracle.graal.java/src/com/oracle/graal/java/GraphBuilderPhase.java --- a/graal/com.oracle.graal.java/src/com/oracle/graal/java/GraphBuilderPhase.java Sun Jan 11 18:12:51 2015 +0100 +++ b/graal/com.oracle.graal.java/src/com/oracle/graal/java/GraphBuilderPhase.java Sun Jan 11 18:34:08 2015 +0100 @@ -183,17 +183,6 @@ return getName() + " " + parser.getMethod().format("%H.%n(%p):%r"); } - public static class ExceptionInfo { - - public final FixedWithNextNode exceptionEdge; - public final ValueNode exception; - - public ExceptionInfo(FixedWithNextNode exceptionEdge, ValueNode exception) { - this.exceptionEdge = exceptionEdge; - this.exception = exception; - } - } - private static class Target { FixedNode fixed;