1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

bug 316816: Project build doesn't print anything on Console if no error parser is selected

This commit is contained in:
Andrew Gvozdev 2010-06-15 22:21:13 +00:00
parent be678f1ff4
commit d77d775b21

View file

@ -306,9 +306,6 @@ public class ErrorParserManager extends OutputStream {
* Parses the input and tries to generate error or warning markers
*/
private void processLine(String line) {
if (fErrorParsers.size() == 0)
return;
String lineTrimmed = line.trim();
lineCounter++;