mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
fixed warning
This commit is contained in:
parent
163a235063
commit
d0cb4c3a58
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue