diff graal/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/UnexpectedResultException.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 a4b84ba6dc2e
children 8b7996916df6
line wrap: on
line diff
--- a/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/UnexpectedResultException.java	Wed Jan 23 16:34:38 2013 +0100
+++ b/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/UnexpectedResultException.java	Wed Jan 23 16:34:57 2013 +0100
@@ -23,9 +23,9 @@
 package com.oracle.truffle.api.nodes;
 
 /**
- * An exception that should be thrown if the return value cannot be represented as a value of the return type. The
- * Truffle optimizer has special knowledge of this exception class and will never compile a catch block that catches this
- * exception type.
+ * An exception that should be thrown if the return value cannot be represented as a value of the
+ * return type. The Truffle optimizer has special knowledge of this exception class and will never
+ * compile a catch block that catches this exception type.
  */
 public final class UnexpectedResultException extends SlowPathException {
 
@@ -33,7 +33,9 @@
     private final Object result;
 
     /**
-     * Creates the exception with the alternative result that cannot be respresented as a value of the return type.
+     * Creates the exception with the alternative result that cannot be respresented as a value of
+     * the return type.
+     * 
      * @param result the alternative result
      */
     public UnexpectedResultException(Object result) {