summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/allapps
diff options
context:
space:
mode:
authorSunny Goyal <sunnygoyal@google.com>2015-06-16 15:45:49 -0700
committerSunny Goyal <sunnygoyal@google.com>2015-06-16 15:45:49 -0700
commitd730f9d74f87b90616e0f0a9c7b6a4c78976f41a (patch)
tree8d96ead3b38cc803605e7a3e3fd443ebd4a09a13 /src/com/android/launcher3/allapps
parent5183285847816cee9d0db6a8a7ab1a5929163e4e (diff)
downloadandroid_packages_apps_Trebuchet-d730f9d74f87b90616e0f0a9c7b6a4c78976f41a.tar.gz
android_packages_apps_Trebuchet-d730f9d74f87b90616e0f0a9c7b6a4c78976f41a.tar.bz2
android_packages_apps_Trebuchet-d730f9d74f87b90616e0f0a9c7b6a4c78976f41a.zip
Making resultHandler protected to make it accessible from a subClass
Change-Id: Id11118b9f8b9782c44847ac82a03ea36bcb43963
Diffstat (limited to 'src/com/android/launcher3/allapps')
-rw-r--r--src/com/android/launcher3/allapps/DefaultAppSearchAlgorithm.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/launcher3/allapps/DefaultAppSearchAlgorithm.java b/src/com/android/launcher3/allapps/DefaultAppSearchAlgorithm.java
index 9ca5ccd06..10740ec77 100644
--- a/src/com/android/launcher3/allapps/DefaultAppSearchAlgorithm.java
+++ b/src/com/android/launcher3/allapps/DefaultAppSearchAlgorithm.java
@@ -32,7 +32,7 @@ public class DefaultAppSearchAlgorithm {
private static final Pattern SPLIT_PATTERN = Pattern.compile("[\\s|\\p{javaSpaceChar}]+");
private final List<AppInfo> mApps;
- private final Handler mResultHandler;
+ protected final Handler mResultHandler;
public DefaultAppSearchAlgorithm(List<AppInfo> apps) {
mApps = apps;