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

Commit ceae9983 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick Committed by Android Git Automerger
Browse files

am 9a01a2f2: Merge "Fixing self-assignment in cloning code."

* commit '9a01a2f2':
  Fixing self-assignment in cloning code.
parents b7d573e9 9a01a2f2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -374,7 +374,7 @@ public class Notification implements Parcelable
        if (this.contentView != null) {
            that.contentView = this.contentView.clone();
        }
        that.iconLevel = that.iconLevel;
        that.iconLevel = this.iconLevel;
        that.sound = this.sound; // android.net.Uri is immutable
        that.audioStreamType = this.audioStreamType;