Merge "Added @NonNull annoation to Insets.NONE static field"
This commit is contained in:
@@ -14250,7 +14250,7 @@ package android.graphics {
|
||||
method @NonNull public static android.graphics.Insets subtract(@NonNull android.graphics.Insets, @NonNull android.graphics.Insets);
|
||||
method public void writeToParcel(android.os.Parcel, int);
|
||||
field @NonNull public static final android.os.Parcelable.Creator<android.graphics.Insets> CREATOR;
|
||||
field public static final android.graphics.Insets NONE;
|
||||
field @NonNull public static final android.graphics.Insets NONE;
|
||||
field public final int bottom;
|
||||
field public final int left;
|
||||
field public final int right;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user