summaryrefslogtreecommitdiffstats
path: root/src/com/android/contacts/incall/InCallPluginInfo.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/contacts/incall/InCallPluginInfo.java')
-rw-r--r--src/com/android/contacts/incall/InCallPluginInfo.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/com/android/contacts/incall/InCallPluginInfo.java b/src/com/android/contacts/incall/InCallPluginInfo.java
index cca5c0048..98cfd3cd2 100644
--- a/src/com/android/contacts/incall/InCallPluginInfo.java
+++ b/src/com/android/contacts/incall/InCallPluginInfo.java
@@ -58,8 +58,6 @@ public class InCallPluginInfo implements Parcelable {
mCallMethodInfo.mStatus = in.readInt();
mCallMethodInfo.mDefaultDirectorySearchIntent = in.readParcelable(PendingIntent.class
.getClassLoader());
- mCallMethodInfo.mDirectorySearchIntent =
- in.readParcelable(PendingIntent.class.getClassLoader());
mCallMethodInfo.mLoginIntent = in.readParcelable(PendingIntent.class.getClassLoader());
mCallMethodInfo.mName = in.readString();
mCallMethodInfo.mBrandIconId = in.readInt();
@@ -78,7 +76,6 @@ public class InCallPluginInfo implements Parcelable {
dest.writeInt(mCallMethodInfo.mIsAuthenticated ? 1 : 0);
dest.writeInt(mCallMethodInfo.mStatus);
dest.writeParcelable(mCallMethodInfo.mDefaultDirectorySearchIntent, flags);
- dest.writeParcelable(mCallMethodInfo.mDirectorySearchIntent, flags);
dest.writeParcelable(mCallMethodInfo.mLoginIntent, flags);
dest.writeString(mCallMethodInfo.mName);
dest.writeInt(mCallMethodInfo.mBrandIconId);