diff options
-rw-r--r-- | core/java/android/view/View.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java index e1d9c30..984e48b 100644 --- a/core/java/android/view/View.java +++ b/core/java/android/view/View.java @@ -1541,7 +1541,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, Accessibility /** * Controls the overscroll mode for this view. - * See {@link #overscrollBy(int, int, int, int, int, int, int, int)}, + * See {@link #overscrollBy(int, int, int, int, int, int, int, int, boolean)}, * {@link #OVERSCROLL_ALWAYS}, {@link #OVERSCROLL_IF_CONTENT_SCROLLS}, * and {@link #OVERSCROLL_NEVER}. */ @@ -8786,7 +8786,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, Accessibility } /** - * Called by {@link #overscrollBy(int, int, int, int, int, int, int, int)} to + * Called by {@link #overscrollBy(int, int, int, int, int, int, int, int, boolean)} to * respond to the results of an overscroll operation. * * @param scrollX New X scroll value in pixels |