summaryrefslogtreecommitdiff
path: root/core/java/android/view/WindowManager.java
diff options
context:
space:
mode:
authorTiger Huang <tigerhuang@google.com>2021-01-20 15:29:02 +0800
committerTiger Huang <tigerhuang@google.com>2021-01-28 15:19:14 +0800
commitc054c438157719eb66ee5af778ccccfe616ebafe (patch)
tree9891b068b52429d0769a036183b633c63505e0f6 /core/java/android/view/WindowManager.java
parent1ee021411844abc734ac51dbf88a16a20f0108a2 (diff)
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
Diffstat (limited to 'core/java/android/view/WindowManager.java')
-rw-r--r--core/java/android/view/WindowManager.java6
1 files changed, 3 insertions, 3 deletions
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;