diff graal/com.oracle.max.graal.nodes/src/com/oracle/graal/nodes/spi/Simplifiable.java @ 5060:4ed4295ce15f

Update import statements.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 08 Mar 2012 19:11:12 +0100
parents ed559a528128
children
line wrap: on
line diff
--- a/graal/com.oracle.max.graal.nodes/src/com/oracle/graal/nodes/spi/Simplifiable.java	Thu Mar 08 17:57:30 2012 +0100
+++ b/graal/com.oracle.max.graal.nodes/src/com/oracle/graal/nodes/spi/Simplifiable.java	Thu Mar 08 19:11:12 2012 +0100
@@ -20,13 +20,13 @@
  * or visit www.oracle.com if you need additional information or have any
  * questions.
  */
-package com.oracle.max.graal.nodes.spi;
+package com.oracle.graal.nodes.spi;
 
 /**
  * This interface allows nodes to perform more complicated simplifications, in contrast to {@link Canonicalizable},
  * which supports only replacing the current node.
  *
- * Implementors of this interface need to be aware that they need to call {@link SimplifierTool#addToWorkList(com.oracle.max.graal.graph.Node)} for each node that might
+ * Implementors of this interface need to be aware that they need to call {@link SimplifierTool#addToWorkList(com.oracle.graal.graph.Node)} for each node that might
  * be influenced (in terms of simplification and canonicalization) by the actions performed in simplify.
  */
 public interface Simplifiable {