diff options
| author | 2019-03-11 21:36:35 +0000 | |
|---|---|---|
| committer | 2019-03-11 21:36:35 +0000 | |
| commit | e756f460d028794a265494e0619db02e6905676a (patch) | |
| tree | 785f1d709e4405b5d7d0c0839f69769867dde96e /graphics/java/android | |
| parent | 79f2408ef759dd0faecad549a8feb154c76a70f9 (diff) | |
| parent | 2cd860317f7deddc72b408c22c6e22885999dac1 (diff) | |
Merge "Added @NonNull annoation to Insets.NONE static field"
Diffstat (limited to 'graphics/java/android')
| -rw-r--r-- | graphics/java/android/graphics/Insets.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/java/android/graphics/Insets.java b/graphics/java/android/graphics/Insets.java index c6dc2398c701..1e03c530aed7 100644 --- a/graphics/java/android/graphics/Insets.java +++ b/graphics/java/android/graphics/Insets.java @@ -30,7 +30,7 @@ import android.os.Parcelable; * */ public final class Insets implements Parcelable { - public static final Insets NONE = new Insets(0, 0, 0, 0); + public static final @NonNull Insets NONE = new Insets(0, 0, 0, 0); public final int left; public final int top; |