comparison graal/com.oracle.truffle.sl/src/com/oracle/truffle/sl/SLTypes.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 31da1716950f
children 630ea5001e33
comparison
equal deleted inserted replaced
7529:4a11124a3563 7530:5e3d1a68664e
64 public BigInteger asBigInteger(int value) { 64 public BigInteger asBigInteger(int value) {
65 return BigInteger.valueOf(value); 65 return BigInteger.valueOf(value);
66 } 66 }
67 67
68 @TypeCheck 68 @TypeCheck
69 public boolean isBigInteger(@SuppressWarnings("unused") int value) { 69 public boolean isBigInteger(@SuppressWarnings("unused")
70 int value) {
70 return true; 71 return true;
71 } 72 }
72 } 73 }
73