changeset 18216:0a72a0f9ef2e

Turffle: checkstyle fix.
author Christian Humer <christian.humer@gmail.com>
date Thu, 30 Oct 2014 23:56:23 +0100
parents 3f4bcb84d798
children 0b5aff6214b9
files graal/com.oracle.graal.truffle/src/com/oracle/graal/truffle/debug/TraceCompilationFailureListener.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.truffle/src/com/oracle/graal/truffle/debug/TraceCompilationFailureListener.java	Thu Oct 30 22:56:08 2014 +0100
+++ b/graal/com.oracle.graal.truffle/src/com/oracle/graal/truffle/debug/TraceCompilationFailureListener.java	Thu Oct 30 23:56:23 2014 +0100
@@ -46,7 +46,7 @@
         }
     }
 
-    public static final boolean isPermanentBailout(Throwable t) {
+    public static boolean isPermanentBailout(Throwable t) {
         return !(t instanceof BailoutException) || ((BailoutException) t).isPermanent();
     }