diff graal/com.oracle.graal.printer/src/com/oracle/graal/printer/GraphPrinter.java @ 7530:5e3d1a68664e

applied mx eclipseformat to all Java files
author Doug Simon <doug.simon@oracle.com>
date Wed, 23 Jan 2013 16:34:57 +0100
parents 5a1f6e96e163
children 48c1ebd24120
line wrap: on
line diff
--- a/graal/com.oracle.graal.printer/src/com/oracle/graal/printer/GraphPrinter.java	Wed Jan 23 16:34:38 2013 +0100
+++ b/graal/com.oracle.graal.printer/src/com/oracle/graal/printer/GraphPrinter.java	Wed Jan 23 16:34:57 2013 +0100
@@ -29,13 +29,16 @@
 import com.oracle.graal.phases.schedule.*;
 
 interface GraphPrinter extends Closeable {
+
     /**
-     * Starts a new group of graphs with the given name, short name and method byte code index (BCI) as properties.
+     * Starts a new group of graphs with the given name, short name and method byte code index (BCI)
+     * as properties.
      */
     void beginGroup(String name, String shortName, ResolvedJavaMethod method, int bci) throws IOException;
 
     /**
-     * Prints an entire {@link Graph} with the specified title, optionally using short names for nodes.
+     * Prints an entire {@link Graph} with the specified title, optionally using short names for
+     * nodes.
      */
     void print(Graph graph, String title, SchedulePhase predefinedSchedule) throws IOException;