From 5411869170638e6809d6d85dbb6d15145da2edd6 Mon Sep 17 00:00:00 2001 From: Joshua Baxter Date: Wed, 6 Nov 2019 01:19:36 +0000 Subject: [PATCH] docs: remove incorrect (default) identifiers Change-Id: I4ce6bc8a7b0e2f18055416a21f465cd2cfe4ec66 test: make ds-docs bug: 112679894 --- core/java/android/view/View.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java index 3742fb5bacae7..d85a58476cf9b 100644 --- a/core/java/android/view/View.java +++ b/core/java/android/view/View.java @@ -25857,7 +25857,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, /** * Returns the over-scroll mode for this view. The result will be - * one of {@link #OVER_SCROLL_ALWAYS} (default), {@link #OVER_SCROLL_IF_CONTENT_SCROLLS} + * one of {@link #OVER_SCROLL_ALWAYS}, {@link #OVER_SCROLL_IF_CONTENT_SCROLLS} * (allow over-scrolling only if the view content is larger than the container), * or {@link #OVER_SCROLL_NEVER}. * @@ -25874,7 +25874,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, /** * Set the over-scroll mode for this view. Valid over-scroll modes are - * {@link #OVER_SCROLL_ALWAYS} (default), {@link #OVER_SCROLL_IF_CONTENT_SCROLLS} + * {@link #OVER_SCROLL_ALWAYS}, {@link #OVER_SCROLL_IF_CONTENT_SCROLLS} * (allow over-scrolling only if the view content is larger than the container), * or {@link #OVER_SCROLL_NEVER}. *