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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/physicalweb/PhysicalWebBleClient.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: chrome/android/java/src/org/chromium/chrome/browser/physicalweb/PhysicalWebBleClient.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/physicalweb/PhysicalWebBleClient.java b/chrome/android/java/src/org/chromium/chrome/browser/physicalweb/PhysicalWebBleClient.java
index 9ad9c8913e4dbb3d4746211d2cc98f362165f57e..69139e23c3df1afc1ee27491cae66e11b461a265 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/physicalweb/PhysicalWebBleClient.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/physicalweb/PhysicalWebBleClient.java
@@ -24,7 +24,7 @@ import org.chromium.chrome.browser.ChromeApplication;
* subclass.
*/
public class PhysicalWebBleClient {
- private static PhysicalWebBleClient sInstance = null;
+ private static PhysicalWebBleClient sInstance;
private static final String TAG = "PhysicalWeb";
// We don't actually listen to any of the onFound or onLost events in the foreground.

Powered by Google App Engine
This is Rietveld 408576698