mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-03 07:05:24 +02:00
bug 387729: GCCScannerInfoConsoleParserTests fails consistently for me
This commit is contained in:
parent
84b9869577
commit
6b0b057af3
3 changed files with 7 additions and 9 deletions
|
@ -94,8 +94,7 @@ public abstract class AbstractGCCBOPConsoleParser implements IScannerInfoConsole
|
|||
*/
|
||||
@Override
|
||||
public boolean processLine(String line) {
|
||||
line= line.trim();
|
||||
if (line.length() == 0) {
|
||||
if (line.trim().length() == 0) {
|
||||
return false;
|
||||
}
|
||||
boolean rc = false;
|
||||
|
|
|
@ -110,8 +110,7 @@ public abstract class AbstractXLCBuildOutputParser implements IScannerInfoConsol
|
|||
*/
|
||||
@Override
|
||||
public boolean processLine(String line) {
|
||||
line= line.trim();
|
||||
if (line.length() == 0) {
|
||||
if (line.trim().length() == 0) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue