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

Commit a82498b9 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "[DO NOT MERGE] Fix NumberFormatException for launcher."

parents 82173698 f3cb1ce6
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;