commit | d730f9d74f87b90616e0f0a9c7b6a4c78976f41a | [log] [tgz] |
---|---|---|
author | Sunny Goyal <sunnygoyal@google.com> | Tue Jun 16 15:45:49 2015 -0700 |
committer | Sunny Goyal <sunnygoyal@google.com> | Tue Jun 16 15:45:49 2015 -0700 |
tree | 8d96ead3b38cc803605e7a3e3fd443ebd4a09a13 | |
parent | 5183285847816cee9d0db6a8a7ab1a5929163e4e [diff] |
Making resultHandler protected to make it accessible from a subClass Change-Id: Id11118b9f8b9782c44847ac82a03ea36bcb43963
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;