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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/ntp/cards/SuggestionsSection.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/ntp/cards/SuggestionsSection.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/ntp/cards/SuggestionsSection.java b/chrome/android/java/src/org/chromium/chrome/browser/ntp/cards/SuggestionsSection.java
index bcb1a08e7c65019fc93eedfae96abd5b86a63f3a..f237cfb9d739240a192c728abcd1e127d1a2d0d7 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/ntp/cards/SuggestionsSection.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/ntp/cards/SuggestionsSection.java
@@ -43,7 +43,7 @@ public class SuggestionsSection extends InnerNode {
private final List<TreeNode> mChildren;
- private boolean mIsNtpDestroyed = false;
+ private boolean mIsNtpDestroyed;
public SuggestionsSection(NodeParent parent, NewTabPageManager manager,
OfflinePageBridge offlinePageBridge, SuggestionsCategoryInfo info) {

Powered by Google App Engine
This is Rietveld 408576698