diff graal/com.oracle.truffle.api/src/com/oracle/truffle/api/impl/DefaultLoopNode.java @ 18163:c88ab4f1f04a

re-enabled Checkstyle with the release of 6.0 that supports Java 8; fixed existing Checkstyle warnings
author Doug Simon <doug.simon@oracle.com>
date Fri, 24 Oct 2014 16:18:10 +0200
parents 865628e59c55
children 2727a2be2391
line wrap: on
line diff
--- a/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/impl/DefaultLoopNode.java	Thu Oct 23 17:20:10 2014 +0200
+++ b/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/impl/DefaultLoopNode.java	Fri Oct 24 16:18:10 2014 +0200
@@ -36,6 +36,7 @@
     @Override
     public void executeLoop(VirtualFrame frame) {
         while (executeRepeatingNode(frame)) {
+            // Empty
         }
     }
 }