From c054c438157719eb66ee5af778ccccfe616ebafe Mon Sep 17 00:00:00 2001 From: Tiger Huang Date: Wed, 20 Jan 2021 15:29:02 +0800 Subject: Remove references to hidden APIs from public Javadoc Otherwise, there will be inaccessible links which may confuse the document reader. Fix: 174863732 Test: presubmit Change-Id: I4d6763e1cc1171f7ae657886f24e27576f856180 --- core/java/android/view/WindowManager.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'core/java/android/view/WindowManager.java') diff --git a/core/java/android/view/WindowManager.java b/core/java/android/view/WindowManager.java index 1327f9c6e827..7faa222dd51f 100644 --- a/core/java/android/view/WindowManager.java +++ b/core/java/android/view/WindowManager.java @@ -3326,8 +3326,8 @@ public interface WindowManager extends ViewManager { /** * Specifies types of insets that this window should avoid overlapping during layout. * - * @param types which types of insets that this window should avoid. The initial value of - * this object includes all system bars. + * @param types which {@link WindowInsets.Type}s of insets that this window should avoid. + * The initial value of this object includes all system bars. */ public void setFitInsetsTypes(@InsetsType int types) { mFitInsetsTypes = types; @@ -3401,7 +3401,7 @@ public interface WindowManager extends ViewManager { } /** - * @return the insets types that this window is avoiding overlapping. + * @return the {@link WindowInsets.Type}s that this window is avoiding overlapping. */ public @InsetsType int getFitInsetsTypes() { return mFitInsetsTypes; -- cgit v1.2.3