diff graal/com.oracle.graal.graph/src/com/oracle/graal/graph/VerificationError.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 12c63380e7ff
children 96bb07a5d667
line wrap: on
line diff
--- a/graal/com.oracle.graal.graph/src/com/oracle/graal/graph/VerificationError.java	Wed Jan 23 16:34:38 2013 +0100
+++ b/graal/com.oracle.graal.graph/src/com/oracle/graal/graph/VerificationError.java	Wed Jan 23 16:34:57 2013 +0100
@@ -22,19 +22,22 @@
  */
 package com.oracle.graal.graph;
 
-
 /**
- * This error represents a failed verification of a node . It must only be used for conditions that should never occur during normal operation.
+ * This error represents a failed verification of a node . It must only be used for conditions that
+ * should never occur during normal operation.
  */
 public class VerificationError extends GraalInternalError {
 
     private static final long serialVersionUID = 8459607567446819822L;
 
     /**
-     * This constructor creates a {@link VerificationError} with a message assembled via {@link String#format(String, Object...)}.
-     * It always uses the ENGLISH locale in order to always generate the same output.
+     * This constructor creates a {@link VerificationError} with a message assembled via
+     * {@link String#format(String, Object...)}. It always uses the ENGLISH locale in order to
+     * always generate the same output.
+     * 
      * @param msg the message that will be associated with the error, in String.format syntax
-     * @param args parameters to String.format - parameters that implement {@link Iterable} will be expanded into a [x, x, ...] representation.
+     * @param args parameters to String.format - parameters that implement {@link Iterable} will be
+     *            expanded into a [x, x, ...] representation.
      */
     public VerificationError(String msg, Object... args) {
         super(msg, args);