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

Commit 5df0988f authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add toString() to WallpaperDescription" into main

parents c0754137 b817f8a2
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -168,6 +168,12 @@ public final class WallpaperDescription implements Parcelable {
        return mSampleSize;
    }

    @Override
    public String toString() {
        String component = (mComponent != null) ? mComponent.toString() : "{null}";
        return  component + ":" + mId;
    }

    ////// Comparison overrides

    @Override