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

Unified Diff: content/shell/android/java/src/org/chromium/content_shell/Shell.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: content/shell/android/java/src/org/chromium/content_shell/Shell.java
diff --git a/content/shell/android/java/src/org/chromium/content_shell/Shell.java b/content/shell/android/java/src/org/chromium/content_shell/Shell.java
index 469bf64df7571607fb5181f439b4d648b11b04d5..e2f82e34584bb68430d33a6a1396760ae116293b 100644
--- a/content/shell/android/java/src/org/chromium/content_shell/Shell.java
+++ b/content/shell/android/java/src/org/chromium/content_shell/Shell.java
@@ -69,8 +69,8 @@ public class Shell extends LinearLayout {
private ContentViewRenderView mContentViewRenderView;
private WindowAndroid mWindow;
- private boolean mLoading = false;
- private boolean mIsFullscreen = false;
+ private boolean mLoading;
+ private boolean mIsFullscreen;
/**
* Constructor for inflating via XML.

Powered by Google App Engine
This is Rietveld 408576698