Merge "Fixing self-assignment in cloning code."

This commit is contained in:
Brad Fitzpatrick
2011-03-15 11:15:19 -07:00
committed by Android Code Review

View File

@@ -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;