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

Unified Diff: android_webview/java/src/org/chromium/android_webview/HttpAuthDatabase.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: android_webview/java/src/org/chromium/android_webview/HttpAuthDatabase.java
diff --git a/android_webview/java/src/org/chromium/android_webview/HttpAuthDatabase.java b/android_webview/java/src/org/chromium/android_webview/HttpAuthDatabase.java
index c27b4faaf02164f42252b274aa9f7ffa100b19a1..1667a588c19946a2f3ed4116e2bed8610ed47154 100644
--- a/android_webview/java/src/org/chromium/android_webview/HttpAuthDatabase.java
+++ b/android_webview/java/src/org/chromium/android_webview/HttpAuthDatabase.java
@@ -32,7 +32,7 @@ public class HttpAuthDatabase {
private static final int DATABASE_VERSION = 1;
- private SQLiteDatabase mDatabase = null;
+ private SQLiteDatabase mDatabase;
private static final String ID_COL = "_id";
@@ -50,7 +50,7 @@ public class HttpAuthDatabase {
/**
* Initially false until the background thread completes.
*/
- private boolean mInitialized = false;
+ private boolean mInitialized;
private final Object mInitializedLock = new Object();

Powered by Google App Engine
This is Rietveld 408576698