### Eclipse Workspace Patch 1.0 #P org.eclipse.jdt.compiler.tool Index: src/org/eclipse/jdt/internal/compiler/tool/EclipseCompiler.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.jdt.compiler.tool/src/org/eclipse/jdt/internal/compiler/tool/EclipseCompiler.java,v retrieving revision 1.22 diff -u -r1.22 EclipseCompiler.java --- src/org/eclipse/jdt/internal/compiler/tool/EclipseCompiler.java 14 Apr 2008 11:28:27 -0000 1.22 +++ src/org/eclipse/jdt/internal/compiler/tool/EclipseCompiler.java 12 Jun 2008 10:44:18 -0000 @@ -98,7 +98,7 @@ PrintWriter writerOut = null; PrintWriter writerErr = null; if (out == null) { - writerOut = new PrintWriter(System.out); + writerOut = new PrintWriter(System.err); writerErr = new PrintWriter(System.err); } else { writerOut = new PrintWriter(out); #P org.eclipse.jdt.compiler.tool.tests Index: src/org/eclipse/jdt/compiler/tool/tests/CompilerInvocationTests.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.jdt.compiler.tool.tests/src/org/eclipse/jdt/compiler/tool/tests/CompilerInvocationTests.java,v retrieving revision 1.8 diff -u -r1.8 CompilerInvocationTests.java --- src/org/eclipse/jdt/compiler/tool/tests/CompilerInvocationTests.java 12 Jun 2008 09:21:36 -0000 1.8 +++ src/org/eclipse/jdt/compiler/tool/tests/CompilerInvocationTests.java 12 Jun 2008 10:44:19 -0000 @@ -930,7 +930,7 @@ assertTrue(errBuffer.toString().isEmpty()); } // https://bugs.eclipse.org/bugs/show_bug.cgi?id=236814 -public void _test022_output_streams() throws IOException { +public void test022_output_streams() throws IOException { ByteArrayOutputStream outBuffer = new ByteArrayOutputStream(), errBuffer = new ByteArrayOutputStream();