changeset 18824:53d2d5e8462a

Remove unused class ExceptionInfo.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 11 Jan 2015 18:34:08 +0100
parents 5a21cac1968f
children bf382ef59838
files graal/com.oracle.graal.java/src/com/oracle/graal/java/GraphBuilderPhase.java
diffstat 1 files changed, 0 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- 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;