diff options
| author | 2021-03-09 11:12:59 +0000 | |
|---|---|---|
| committer | 2021-03-09 11:13:49 +0000 | |
| commit | 5cb7f07227527f11f5ec7eb577f8666c33a01625 (patch) | |
| tree | 2e1a7d7d74060940c58164a11d8c2b5a1508f855 | |
| parent | f41a01c8d21cee8912fd6e0b181d8ba86987dff4 (diff) | |
Remove doc reference to system transitions.
There's no action the developer should take based on this possibility,
so there's no need to have it in the javadoc for the method.
Bug: 181551575
Test: None, change only touches javadoc
Change-Id: I571bb8c28a3831d8541e1713b0048127c3dc24a2
| -rw-r--r-- | core/java/android/widget/RemoteViews.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/core/java/android/widget/RemoteViews.java b/core/java/android/widget/RemoteViews.java index 2328e589216b..1ad78ab5884e 100644 --- a/core/java/android/widget/RemoteViews.java +++ b/core/java/android/widget/RemoteViews.java @@ -4123,8 +4123,7 @@ public class RemoteViews implements Parcelable, Filter { /** * Sets an OutlineProvider on the view whose corner radius is a dimension calculated using - * {@link TypedValue#applyDimension(int, float, DisplayMetrics)}. This outline may change shape - * during system transitions. + * {@link TypedValue#applyDimension(int, float, DisplayMetrics)}. * * <p>NOTE: It is recommended to use {@link TypedValue#COMPLEX_UNIT_PX} only for 0. * Setting margins in pixels will behave poorly when the RemoteViews object is used on a @@ -4137,7 +4136,7 @@ public class RemoteViews implements Parcelable, Filter { /** * Sets an OutlineProvider on the view whose corner radius is a dimension resource with - * {@code resId}. This outline may change shape during system transitions. + * {@code resId}. */ public void setViewOutlinePreferredRadiusDimen(@IdRes int viewId, @DimenRes int resId) { addAction(new SetViewOutlinePreferredRadiusAction(viewId, resId)); |