Fixing compilation errors
authorJaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 09:59:21 +0200
changeset 178f3f2f73686d8
parent 177 67d6dceb1002
child 179 b94c14f52c31
Fixing compilation errors
samples/visitor/11-cleanversion/src-test/org/apidesign/test/visitor/PrintTest.java
     1.1 --- a/samples/visitor/11-cleanversion/src-test/org/apidesign/test/visitor/PrintTest.java	Sat Jun 14 09:59:20 2008 +0200
     1.2 +++ b/samples/visitor/11-cleanversion/src-test/org/apidesign/test/visitor/PrintTest.java	Sat Jun 14 09:59:21 2008 +0200
     1.3 @@ -10,7 +10,6 @@
     1.4  
     1.5  public class PrintTest {
     1.6  
     1.7 -    // BEGIN: visitor.notevolutionready.print
     1.8      public static class PrintVisitor implements Visitor1_0 {
     1.9          StringBuffer sb = new StringBuffer();
    1.10          
    1.11 @@ -38,7 +37,6 @@
    1.12          
    1.13          assertEquals("1 + 1", print.sb.toString());
    1.14      }
    1.15 -    // END: visitor.notevolutionready.print
    1.16  
    1.17      @Test public void printOnePlusTwoPlusThree() {
    1.18          Number one = new Number(1);