1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 14:15:23 +02:00

getErrorStream did not return proper stream - fixed.

This commit is contained in:
David Inglis 2004-06-22 17:52:03 +00:00
parent 27772d9655
commit fdb7641d45

View file

@ -321,7 +321,7 @@ public class BuildConsolePartitioner
}
public ConsoleOutputStream getErrorStream() throws CoreException {
return new BuildOutputStream(fManager.getStream(BuildConsoleManager.BUILD_STREAM_TYPE_INFO));
return new BuildOutputStream(fManager.getStream(BuildConsoleManager.BUILD_STREAM_TYPE_ERROR));
}
}