am d730f9d7: Making resultHandler protected to make it accessible from a subClass
* commit 'd730f9d74f87b90616e0f0a9c7b6a4c78976f41a':
Making resultHandler protected to make it accessible from a subClass
diff --git a/src/com/android/launcher3/allapps/DefaultAppSearchAlgorithm.java b/src/com/android/launcher3/allapps/DefaultAppSearchAlgorithm.java
index 9ca5ccd..10740ec 100644
--- a/src/com/android/launcher3/allapps/DefaultAppSearchAlgorithm.java
+++ b/src/com/android/launcher3/allapps/DefaultAppSearchAlgorithm.java
@@ -32,7 +32,7 @@
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;