diff graal/com.oracle.truffle.api.dsl.test/src/com/oracle/truffle/api/dsl/test/PolymorphicTest.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 9f38d222fa6c
children
line wrap: on
line diff
--- a/graal/com.oracle.truffle.api.dsl.test/src/com/oracle/truffle/api/dsl/test/PolymorphicTest.java	Thu Oct 23 17:20:10 2014 +0200
+++ b/graal/com.oracle.truffle.api.dsl.test/src/com/oracle/truffle/api/dsl/test/PolymorphicTest.java	Fri Oct 24 16:18:10 2014 +0200
@@ -75,7 +75,7 @@
     public void testPolymorphic1() {
         assertRuns(Polymorphic1Factory.getInstance(), //
                         array(42, 43, true, false, "a", "b"), //
-                        array(42, 43, true, false, "a", "b"),//
+                        array(42, 43, true, false, "a", "b"), //
                         new ExecutionListener() {
                             public void afterExecution(TestRootNode<? extends ValueNode> node, int index, Object value, Object expectedResult, Object actualResult, boolean last) {
                                 Polymorphic1 polymorphic = ((Polymorphic1) node.getNode());
@@ -119,7 +119,7 @@
     public void testPolymorphic2() {
         assertRuns(Polymorphic2Factory.getInstance(), //
                         array(0, 1, 1, "1", "2", 2, 3), //
-                        array(0, 1, 1, "1", "2", 2, 3),//
+                        array(0, 1, 1, "1", "2", 2, 3), //
                         new ExecutionListener() {
                             public void afterExecution(TestRootNode<? extends ValueNode> node, int index, Object value, Object expectedResult, Object actualResult, boolean last) {
                                 Polymorphic2 polymorphic = ((Polymorphic2) node.getNode());
@@ -161,7 +161,7 @@
     public void testPolymorphic3() {
         assertRuns(Polymorphic3Factory.getInstance(), //
                         array("0", "1", 1, 1, 2, 2, 3, 3), //
-                        array("0", "1", 1, 1, 2, 2, 3, 3),//
+                        array("0", "1", 1, 1, 2, 2, 3, 3), //
                         new ExecutionListener() {
                             public void afterExecution(TestRootNode<? extends ValueNode> node, int index, Object value, Object expectedResult, Object actualResult, boolean last) {
                                 Polymorphic3 polymorphic = ((Polymorphic3) node.getNode());