summaryrefslogtreecommitdiff
path: root/src/com/android/dialer/calllog/CallLogListItemViews.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/dialer/calllog/CallLogListItemViews.java')
-rw-r--r--src/com/android/dialer/calllog/CallLogListItemViews.java8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/com/android/dialer/calllog/CallLogListItemViews.java b/src/com/android/dialer/calllog/CallLogListItemViews.java
index 86f531365..0dd4f6344 100644
--- a/src/com/android/dialer/calllog/CallLogListItemViews.java
+++ b/src/com/android/dialer/calllog/CallLogListItemViews.java
@@ -36,8 +36,6 @@ public final class CallLogListItemViews {
public final View primaryActionView;
/** The secondary action button on the entry. */
public final ImageView secondaryActionView;
- /** The divider between the primary and secondary actions. */
- public final View dividerView;
/** The details of the phone call. */
public final PhoneCallDetailsViews phoneCallDetailsViews;
/** The text of the header of a section. */
@@ -46,13 +44,11 @@ public final class CallLogListItemViews {
public final View bottomDivider;
private CallLogListItemViews(QuickContactBadge quickContactView, View primaryActionView,
- ImageView secondaryActionView, View dividerView,
- PhoneCallDetailsViews phoneCallDetailsViews,
+ ImageView secondaryActionView, PhoneCallDetailsViews phoneCallDetailsViews,
TextView listHeaderTextView, View bottomDivider) {
this.quickContactView = quickContactView;
this.primaryActionView = primaryActionView;
this.secondaryActionView = secondaryActionView;
- this.dividerView = dividerView;
this.phoneCallDetailsViews = phoneCallDetailsViews;
this.listHeaderTextView = listHeaderTextView;
this.bottomDivider = bottomDivider;
@@ -63,7 +59,6 @@ public final class CallLogListItemViews {
(QuickContactBadge) view.findViewById(R.id.quick_contact_photo),
view.findViewById(R.id.primary_action_view),
(ImageView) view.findViewById(R.id.secondary_action_icon),
- view.findViewById(R.id.divider),
PhoneCallDetailsViews.fromView(view),
(TextView) view.findViewById(R.id.call_log_header),
view.findViewById(R.id.call_log_divider));
@@ -75,7 +70,6 @@ public final class CallLogListItemViews {
new QuickContactBadge(context),
new View(context),
new ImageView(context),
- new View(context),
PhoneCallDetailsViews.createForTest(context),
new TextView(context),
new View(context));