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

Unified Diff: components/gcm_driver/android/java/src/org/chromium/components/gcm_driver/GCMDriver.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/GCMDriver.java
diff --git a/components/gcm_driver/android/java/src/org/chromium/components/gcm_driver/GCMDriver.java b/components/gcm_driver/android/java/src/org/chromium/components/gcm_driver/GCMDriver.java
index f1a47e3babac0b811ebe5516c72bd05b238395f8..5d11c73bc21385c0b9e80faf938950ae4396e8e1 100644
--- a/components/gcm_driver/android/java/src/org/chromium/components/gcm_driver/GCMDriver.java
+++ b/components/gcm_driver/android/java/src/org/chromium/components/gcm_driver/GCMDriver.java
@@ -30,7 +30,7 @@ public class GCMDriver {
private static final String TAG = "GCMDriver";
// The instance of GCMDriver currently owned by a C++ GCMDriverAndroid, if any.
- private static GCMDriver sInstance = null;
+ private static GCMDriver sInstance;
private long mNativeGCMDriverAndroid;
private final Context mContext;

Powered by Google App Engine
This is Rietveld 408576698