Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 21d11190 authored by Jon Miranda's avatar Jon Miranda Committed by android-build-merger
Browse files

[DO NOT MERGE] Fix NumberFormatException for launcher.

am: 241cd902

Change-Id: I4b7ba388bb96b0c3c4c8b98649e05c5dd51405e0
parents b6d7a85a 241cd902
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;