--- old/test/tools/javac/annotations/typeAnnotations/classfile/ClassfileTestHelper.java 2014-05-09 16:27:56.405392895 -0400 +++ new/test/tools/javac/annotations/typeAnnotations/classfile/ClassfileTestHelper.java 2014-05-09 16:27:56.306388693 -0400 @@ -36,8 +36,8 @@ //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);