Loading res/values/strings.xml +1 −5 Original line number Diff line number Diff line Loading @@ -727,11 +727,7 @@ [CHAR LIMIT=65] --> <string name="call_log_header_yesterday">Yesterday</string> <!-- String used as a header in the call log above calls which occurred last week. [CHAR LIMIT=65] --> <string name="call_log_header_last_week">Last week</string> <!-- String used as a header in the call log above calls which occurred more than a week ago. <!-- String used as a header in the call log above calls which occurred two days or more ago. [CHAR LIMIT=65] --> <string name="call_log_header_other">Older</string> Loading src/com/android/dialer/calllog/CallLogAdapter.java +0 −2 Original line number Diff line number Diff line Loading @@ -1350,8 +1350,6 @@ public class CallLogAdapter extends GroupingListAdapter return mContext.getResources().getString(R.string.call_log_header_today); } else if (group == CallLogGroupBuilder.DAY_GROUP_YESTERDAY) { return mContext.getResources().getString(R.string.call_log_header_yesterday); } else if (group == CallLogGroupBuilder.DAY_GROUP_LAST_WEEK) { return mContext.getResources().getString(R.string.call_log_header_last_week); } else { return mContext.getResources().getString(R.string.call_log_header_other); } Loading src/com/android/dialer/calllog/CallLogGroupBuilder.java +1 −6 Original line number Diff line number Diff line Loading @@ -80,11 +80,8 @@ public class CallLogGroupBuilder { /** Day grouping for calls which occurred yesterday. */ public static final int DAY_GROUP_YESTERDAY = 1; /** Day grouping for calls which occurred last week. */ public static final int DAY_GROUP_LAST_WEEK = 2; /** Day grouping for calls which occurred before last week. */ public static final int DAY_GROUP_OTHER = 3; public static final int DAY_GROUP_OTHER = 2; /** Instance of the time object used for time calculations. */ private static final Time TIME = new Time(); Loading Loading @@ -264,8 +261,6 @@ public class CallLogGroupBuilder { return DAY_GROUP_TODAY; } else if (days == 1) { return DAY_GROUP_YESTERDAY; } else if (days > 1 && days <=7) { return DAY_GROUP_LAST_WEEK; } else { return DAY_GROUP_OTHER; } Loading Loading
res/values/strings.xml +1 −5 Original line number Diff line number Diff line Loading @@ -727,11 +727,7 @@ [CHAR LIMIT=65] --> <string name="call_log_header_yesterday">Yesterday</string> <!-- String used as a header in the call log above calls which occurred last week. [CHAR LIMIT=65] --> <string name="call_log_header_last_week">Last week</string> <!-- String used as a header in the call log above calls which occurred more than a week ago. <!-- String used as a header in the call log above calls which occurred two days or more ago. [CHAR LIMIT=65] --> <string name="call_log_header_other">Older</string> Loading
src/com/android/dialer/calllog/CallLogAdapter.java +0 −2 Original line number Diff line number Diff line Loading @@ -1350,8 +1350,6 @@ public class CallLogAdapter extends GroupingListAdapter return mContext.getResources().getString(R.string.call_log_header_today); } else if (group == CallLogGroupBuilder.DAY_GROUP_YESTERDAY) { return mContext.getResources().getString(R.string.call_log_header_yesterday); } else if (group == CallLogGroupBuilder.DAY_GROUP_LAST_WEEK) { return mContext.getResources().getString(R.string.call_log_header_last_week); } else { return mContext.getResources().getString(R.string.call_log_header_other); } Loading
src/com/android/dialer/calllog/CallLogGroupBuilder.java +1 −6 Original line number Diff line number Diff line Loading @@ -80,11 +80,8 @@ public class CallLogGroupBuilder { /** Day grouping for calls which occurred yesterday. */ public static final int DAY_GROUP_YESTERDAY = 1; /** Day grouping for calls which occurred last week. */ public static final int DAY_GROUP_LAST_WEEK = 2; /** Day grouping for calls which occurred before last week. */ public static final int DAY_GROUP_OTHER = 3; public static final int DAY_GROUP_OTHER = 2; /** Instance of the time object used for time calculations. */ private static final Time TIME = new Time(); Loading Loading @@ -264,8 +261,6 @@ public class CallLogGroupBuilder { return DAY_GROUP_TODAY; } else if (days == 1) { return DAY_GROUP_YESTERDAY; } else if (days > 1 && days <=7) { return DAY_GROUP_LAST_WEEK; } else { return DAY_GROUP_OTHER; } Loading