1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-29 11:55:40 +02:00

- fixed indentation

This commit is contained in:
Alena Laskavaia 2008-11-04 17:40:57 +00:00
parent aec8c7fadc
commit 33b9a3cc5d

View file

@ -102,7 +102,7 @@ public class CommandLineUtil {
default:
buffer.append('\\');
buffer.append(c);
break;
break;
}
state = IN_DOUBLE_QUOTES;
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());
}
return aList.toArray(new String[aList.size()]);