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

@ -7,7 +7,7 @@ import java.util.ArrayList;
* @since 5.1 * @since 5.1
*/ */
public class CommandLineUtil { public class CommandLineUtil {
/** /**
* Parsing arguments in a shell style. * Parsing arguments in a shell style.
* i.e. * i.e.
@ -29,10 +29,10 @@ public class CommandLineUtil {
final int IN_SINGLE_QUOTES = 4; final int IN_SINGLE_QUOTES = 4;
final int IN_ARG = 5; final int IN_ARG = 5;
if (line == null) { if (line == null) {
line = ""; //$NON-NLS-1$ line = ""; //$NON-NLS-1$
} }
char[] array = line.trim().toCharArray(); char[] array = line.trim().toCharArray();
ArrayList<String> aList = new ArrayList<String>(); ArrayList<String> aList = new ArrayList<String>();
StringBuilder buffer = new StringBuilder(); StringBuilder buffer = new StringBuilder();
@ -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;
@ -112,8 +112,8 @@ public class CommandLineUtil {
break; break;
} }
} }
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()]);