From a8b9183a7cb4dca8d8e6507abc765c581bf67dcb Mon Sep 17 00:00:00 2001 From: Jozef BABJAK Date: Tue, 22 Feb 2011 08:05:08 +0100 Subject: [PATCH] Fixing self-assignment in cloning code. Change-Id: I6c918c0c7345678cbb171905eccfca50e59ae41a --- core/java/android/app/Notification.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/android/app/Notification.java b/core/java/android/app/Notification.java index 856943d5f3806..414a2a1afb785 100644 --- a/core/java/android/app/Notification.java +++ b/core/java/android/app/Notification.java @@ -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;