Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(257)

Unified Diff: components/gcm_driver/android/java/src/org/chromium/components/gcm_driver/GoogleCloudMessagingV2.java

Issue 2548013002: Remove redundant field initialization in Java code. (Closed)
Patch Set: rebase Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/gcm_driver/android/java/src/org/chromium/components/gcm_driver/GoogleCloudMessagingV2.java
diff --git a/components/gcm_driver/android/java/src/org/chromium/components/gcm_driver/GoogleCloudMessagingV2.java b/components/gcm_driver/android/java/src/org/chromium/components/gcm_driver/GoogleCloudMessagingV2.java
index 2b214030aa83c99e32983fef04fcb5d0f452abfd..60158dc5b7388da548c7aba084f5541bfc92c66d 100644
--- a/components/gcm_driver/android/java/src/org/chromium/components/gcm_driver/GoogleCloudMessagingV2.java
+++ b/components/gcm_driver/android/java/src/org/chromium/components/gcm_driver/GoogleCloudMessagingV2.java
@@ -43,7 +43,7 @@ public class GoogleCloudMessagingV2 implements GoogleCloudMessagingSubscriber {
private static final String EXTRA_SUBSCRIPTION = "subscription";
private Context mContext;
- private PendingIntent mAppPendingIntent = null;
+ private PendingIntent mAppPendingIntent;
private final Object mAppPendingIntentLock = new Object();
public GoogleCloudMessagingV2(Context context) {

Powered by Google App Engine
This is Rietveld 408576698