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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/ntp/RecentTabsExpandableListView.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/RecentTabsExpandableListView.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/ntp/RecentTabsExpandableListView.java b/chrome/android/java/src/org/chromium/chrome/browser/ntp/RecentTabsExpandableListView.java
index 8614c9053fd052686a75879b245899314ae6488d..e1441ff4743568c0a4d269b0029872d42a2db6f6 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/ntp/RecentTabsExpandableListView.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/ntp/RecentTabsExpandableListView.java
@@ -19,8 +19,8 @@ public class RecentTabsExpandableListView extends ExpandableListView {
private static final int MAX_LIST_VIEW_WIDTH_DP = 550;
private int mMaxListViewWidth;
- private int mSavedListPosition = 0;
- private int mSavedListTop = 0;
+ private int mSavedListPosition;
+ private int mSavedListTop;
/**
* Constructor for inflating from XML.

Powered by Google App Engine
This is Rietveld 408576698