From 1f46828d7b7c6e7a1e513fbaa38cc0332a3eeb2b Mon Sep 17 00:00:00 2001
From: Dustin Lam
Date: Tue, 5 Jan 2021 18:28:18 +0000
Subject: [PATCH] Update deprecated link to RecyclerView
Previously pointing to the support.* version, and now points
to androidx.* one.
Fixes: 175752845
Test: N/A docs change
Change-Id: I7d63bd526000235bbc03a8631640058742726c38
---
core/java/android/widget/ListView.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/core/java/android/widget/ListView.java b/core/java/android/widget/ListView.java
index cf0e0d1f1842c..5e74381dce221 100644
--- a/core/java/android/widget/ListView.java
+++ b/core/java/android/widget/ListView.java
@@ -73,7 +73,7 @@ import java.util.function.Predicate;
/**
* Displays a vertically-scrollable collection of views, where each view is positioned
* immediatelybelow the previous view in the list. For a more modern, flexible, and performant
- * approach to displaying lists, use {@link android.support.v7.widget.RecyclerView}.
+ * approach to displaying lists, use {@link androidx.recyclerview.widget.RecyclerView}.
*
* To display a list, you can include a list view in your layout XML file:
*