test/tools/javac/annotations/typeAnnotations/classfile/ClassfileTestHelper.java

Print this page

        

@@ -34,12 +34,12 @@
     int expected_invisibles = 0;
     int expected_visibles = 0;
 
     //Makes debugging much easier. Set to 'false' for less output.
     public Boolean verbose = true;
-    void println(String msg) { if (verbose) System.out.println(msg); }
-    void print(String msg) { if (verbose) System.out.print(msg); }
+    void println(String msg) { if (verbose) System.err.println(msg); }
+    void print(String msg) { if (verbose) System.err.print(msg); }
 
     File writeTestFile(String fname, String source) throws IOException {
       File f = new File(fname);
         PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter(f)));
         out.println(source);