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

Commit 204e2c07 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix errorprone warnings that should be errors" am: 654e9d6d

parents 812fbd26 654e9d6d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -86,7 +86,7 @@ public final class Announcement implements Parcelable {
    public Announcement(@NonNull ProgramSelector selector, @Type int type,
            @NonNull Map<String, String> vendorInfo) {
        mSelector = Objects.requireNonNull(selector);
        mType = Objects.requireNonNull(type);
        mType = type;
        mVendorInfo = Objects.requireNonNull(vendorInfo);
    }