1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

fixed warning

This commit is contained in:
David Daoust 2006-08-25 19:52:16 +00:00
parent 163a235063
commit d0cb4c3a58

View file

@ -85,7 +85,7 @@ public abstract class AbstractGCCBOPConsoleParser implements IScannerInfoConsole
boolean rc = false;
// check for multiline commands (ends with '\')
if (line.endsWith("\\")) { //$NON-NLS-1$
sMultiline += line.substring(0, line.length()-1);// + " "; //$NON-NLS-1$
sMultiline += line.substring(0, line.length()-1);// + " ";
bMultiline = true;
return rc;
}