Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e756f460 authored by Nader Jawad's avatar Nader Jawad Committed by Android (Google) Code Review
Browse files

Merge "Added @NonNull annoation to Insets.NONE static field"

parents 79f2408e 2cd86031
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
+1 −1
Original line number Diff line number Diff line
@@ -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;