comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/UnexpectedResultException.java @ 19510:1cde96b96673

Fixed code format issues.
author Roland Schatz <roland.schatz@oracle.com>
date Thu, 19 Feb 2015 16:15:56 +0100
parents a0185cd77565
children
comparison
equal deleted inserted replaced
19508:8c7536965c95 19510:1cde96b96673
37 private final Object result; 37 private final Object result;
38 38
39 /** 39 /**
40 * Creates the exception with the alternative result that cannot be represented as a value of 40 * Creates the exception with the alternative result that cannot be represented as a value of
41 * the return type. 41 * the return type.
42 * 42 *
43 * @param result the alternative result 43 * @param result the alternative result
44 */ 44 */
45 public UnexpectedResultException(Object result) { 45 public UnexpectedResultException(Object result) {
46 CompilerDirectives.transferToInterpreter(); 46 CompilerDirectives.transferToInterpreter();
47 this.result = result; 47 this.result = result;