summaryrefslogtreecommitdiff
path: root/java/com/android/contacts/common/list
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/android/contacts/common/list')
-rw-r--r--java/com/android/contacts/common/list/AutoScrollListView.java2
-rw-r--r--java/com/android/contacts/common/list/ContactEntryListFragment.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/java/com/android/contacts/common/list/AutoScrollListView.java b/java/com/android/contacts/common/list/AutoScrollListView.java
index 601abf528..8d6455f7f 100644
--- a/java/com/android/contacts/common/list/AutoScrollListView.java
+++ b/java/com/android/contacts/common/list/AutoScrollListView.java
@@ -116,7 +116,7 @@ public class AutoScrollListView extends ListView {
protected void onLayout(boolean changed, int l, int t, int r, int b) {
super.onLayout(changed, l, t, r, b);
- // Workaround for b/31160338 and b/32778636.
+ // Workaround for a bug and a bug.
if (android.os.Build.VERSION.SDK_INT == Build.VERSION_CODES.N
|| android.os.Build.VERSION.SDK_INT == Build.VERSION_CODES.N_MR1) {
layoutChildren();
diff --git a/java/com/android/contacts/common/list/ContactEntryListFragment.java b/java/com/android/contacts/common/list/ContactEntryListFragment.java
index 94551a8c8..c807ea815 100644
--- a/java/com/android/contacts/common/list/ContactEntryListFragment.java
+++ b/java/com/android/contacts/common/list/ContactEntryListFragment.java
@@ -825,7 +825,7 @@ public abstract class ContactEntryListFragment<T extends ContactEntryListAdapter
@Override
public void onResume() {
super.onResume();
- // Restore the selection of the list view. See b/19982820.
+ // Restore the selection of the list view. See a bug.
// This has to be done manually because if the list view has its emptyView set,
// the scrolling state will be reset when clearPartitions() is called on the adapter.
mListView.setSelectionFromTop(mListViewTopIndex, mListViewTopOffset);