mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
- fixed indentation
This commit is contained in:
parent
aec8c7fadc
commit
33b9a3cc5d
1 changed files with 6 additions and 6 deletions
|
@ -102,7 +102,7 @@ public class CommandLineUtil {
|
||||||
default:
|
default:
|
||||||
buffer.append('\\');
|
buffer.append('\\');
|
||||||
buffer.append(c);
|
buffer.append(c);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
state = IN_DOUBLE_QUOTES;
|
state = IN_DOUBLE_QUOTES;
|
||||||
break;
|
break;
|
||||||
|
@ -113,7 +113,7 @@ public class CommandLineUtil {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (state!=INITIAL) { // this allow to process empty string as an argument
|
if (state != INITIAL) { // this allow to process empty string as an argument
|
||||||
aList.add(buffer.toString());
|
aList.add(buffer.toString());
|
||||||
}
|
}
|
||||||
return aList.toArray(new String[aList.size()]);
|
return aList.toArray(new String[aList.size()]);
|
||||||
|
|
Loading…
Add table
Reference in a new issue