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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/infobar/InfoBarContainer.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/infobar/InfoBarContainer.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/infobar/InfoBarContainer.java b/chrome/android/java/src/org/chromium/chrome/browser/infobar/InfoBarContainer.java
index f13c8ffd5cb88d488b9a19b07ffb2ad17a3360a7..018a0279e1087acd196b0a083b7dd348f28b007e 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/infobar/InfoBarContainer.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/infobar/InfoBarContainer.java
@@ -104,7 +104,7 @@ public class InfoBarContainer extends SwipableOverlayView {
private final ArrayList<InfoBar> mInfoBars = new ArrayList<InfoBar>();
/** True when this container has been emptied and its native counterpart has been destroyed. */
- private boolean mDestroyed = false;
+ private boolean mDestroyed;
/** The id of the tab associated with us. Set to Tab.INVALID_TAB_ID if no tab is associated. */
private int mTabId;

Powered by Google App Engine
This is Rietveld 408576698