commit | 0dcd1fe17e566dcf45e19deadc78d8349b661177 | [log] [tgz] |
---|---|---|
author | android-build-team Robot <android-build-team-robot@google.com> | Wed Sep 11 23:47:13 2019 +0000 |
committer | android-build-team Robot <android-build-team-robot@google.com> | Wed Sep 11 23:47:13 2019 +0000 |
tree | 6687b2fa8e1ffdf458dceef645d14e62f491b092 | |
parent | f09c82d663240aefe3c10b7de48b059ecad08547 [diff] | |
parent | 6301570222d07a0381428e067aeb1db1e96a3ea8 [diff] |
Merge cherrypicks of [9374574] into rvc-release Change-Id: I0a6583685dadab9ad113da855d260719b86c901e
diff --git a/src/com/android/launcher3/Utilities.java b/src/com/android/launcher3/Utilities.java index 3bef598..ba122f9 100644 --- a/src/com/android/launcher3/Utilities.java +++ b/src/com/android/launcher3/Utilities.java
@@ -732,7 +732,7 @@ 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;