Fixing self-assignment in cloning code.

Change-Id: I6c918c0c7345678cbb171905eccfca50e59ae41a
This commit is contained in:
Jozef BABJAK
2011-02-22 08:05:08 +01:00
parent 7118bdec52
commit a8b9183a7c

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;