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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/pageinfo/WebsiteSettingsPopup.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/pageinfo/WebsiteSettingsPopup.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/pageinfo/WebsiteSettingsPopup.java b/chrome/android/java/src/org/chromium/chrome/browser/pageinfo/WebsiteSettingsPopup.java
index 743555e94cba9078d60baeb7afe5b4dc3abaebfd..b47373a2526e1c3a89119ad8d2dc8265242f5004 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/pageinfo/WebsiteSettingsPopup.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/pageinfo/WebsiteSettingsPopup.java
@@ -137,7 +137,7 @@ public class WebsiteSettingsPopup implements OnClickListener {
private boolean mIsShowingTruncatedText = true;
// The profile to use when getting the end index for the origin.
- private Profile mProfile = null;
+ private Profile mProfile;
// The maximum number of lines currently shown in the view
private int mCurrentMaxLines = Integer.MAX_VALUE;
@@ -266,7 +266,7 @@ public class WebsiteSettingsPopup implements OnClickListener {
private final Dialog mDialog;
// Animation which is currently running, if there is one.
- private AnimatorSet mCurrentAnimation = null;
+ private AnimatorSet mCurrentAnimation;
private boolean mDismissWithoutAnimation;

Powered by Google App Engine
This is Rietveld 408576698