[DO NOT MERGE] Fix NumberFormatException for launcher.
am: 241cd90203
Change-Id: I4b7ba388bb96b0c3c4c8b98649e05c5dd51405e0
This commit is contained in:
@@ -732,7 +732,7 @@ public final class Utilities {
|
||||
int[] array = new int[tokenizer.countTokens()];
|
||||
int count = 0;
|
||||
while (tokenizer.hasMoreTokens()) {
|
||||
array[count] = Integer.parseInt(tokenizer.nextToken());
|
||||
array[count] = Integer.parseInt(tokenizer.nextToken().trim());
|
||||
count++;
|
||||
}
|
||||
return array;
|
||||
|
||||
Reference in New Issue
Block a user