summaryrefslogtreecommitdiffstats
path: root/chips/src/com/android/ex/chips/BaseRecipientAdapter.java
diff options
context:
space:
mode:
authorScott Kennedy <skennedy@google.com>2014-02-18 15:21:52 -0800
committerScott Kennedy <skennedy@google.com>2014-02-18 15:21:52 -0800
commit5da5d23b1d8810b41db5e974e1a859937173bb8e (patch)
tree866313f906ca85cf55fdbb72f549ed67b09cf014 /chips/src/com/android/ex/chips/BaseRecipientAdapter.java
parentae07c2be104a1f95426b697f3074bea72bc140e1 (diff)
downloadandroid_frameworks_ex-5da5d23b1d8810b41db5e974e1a859937173bb8e.tar.gz
android_frameworks_ex-5da5d23b1d8810b41db5e974e1a859937173bb8e.tar.bz2
android_frameworks_ex-5da5d23b1d8810b41db5e974e1a859937173bb8e.zip
BaseRecipientAdapter does not need to be abstract
It works fine if you use BRA as your adapter, so there's no point making people instantiate it as new BRA() { }; Bug: 8885347 Change-Id: Icdd8d3032a10fabd30a9a80b99204b20bdea9cd9
Diffstat (limited to 'chips/src/com/android/ex/chips/BaseRecipientAdapter.java')
-rw-r--r--chips/src/com/android/ex/chips/BaseRecipientAdapter.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/chips/src/com/android/ex/chips/BaseRecipientAdapter.java b/chips/src/com/android/ex/chips/BaseRecipientAdapter.java
index 8233081..7f5dd66 100644
--- a/chips/src/com/android/ex/chips/BaseRecipientAdapter.java
+++ b/chips/src/com/android/ex/chips/BaseRecipientAdapter.java
@@ -60,8 +60,7 @@ import java.util.Set;
/**
* Adapter for showing a recipient list.
*/
-public abstract class BaseRecipientAdapter extends BaseAdapter implements Filterable,
- AccountSpecifier {
+public class BaseRecipientAdapter extends BaseAdapter implements Filterable, AccountSpecifier {
private static final String TAG = "BaseRecipientAdapter";
private static final boolean DEBUG = false;