comparison graal/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/InterfaceChildFieldTest.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 846c059e3ecf
children 65a160d9d259
comparison
equal deleted inserted replaced
18162:ab62800259ff 18163:c88ab4f1f04a
90 return child.executeIntf(); 90 return child.executeIntf();
91 } 91 }
92 } 92 }
93 93
94 interface TestChildInterface { 94 interface TestChildInterface {
95 public int executeIntf(); 95 int executeIntf();
96 } 96 }
97 97
98 class TestLeafNode extends Node implements TestChildInterface { 98 class TestLeafNode extends Node implements TestChildInterface {
99 public TestLeafNode() { 99 public TestLeafNode() {
100 super(null); 100 super(null);