commit | 49e516b148f992d4cfcf1564ec6b6b151ab5c320 | [log] [tgz] |
---|---|---|
author | android-build-team Robot <android-build-team-robot@google.com> | Wed Sep 11 19:54:56 2019 +0000 |
committer | android-build-team Robot <android-build-team-robot@google.com> | Wed Sep 11 19:54:56 2019 +0000 |
tree | 2a36474f6d80275c5018fedc76d902245a8bbdd3 | |
parent | fc89fc0b169eb681c0a33f563d547270f4fc10c2 [diff] | |
parent | 9b82a4141190e9a227111a5edc84d1cd2bf63af4 [diff] |
Merge cherrypicks of [9372739] into qt-qpr1-release Change-Id: Ib0a6069fd9daa1ad9137d5c80d052ea05250015b
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;