1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +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: 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()]);