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

Unified Diff: ui/android/java/src/org/chromium/ui/picker/DateTimeSuggestion.java

Issue 744453002: Fix a bunch of Java Checkstyle issues. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: NeedsBraces to info Created 6 years, 1 month 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: ui/android/java/src/org/chromium/ui/picker/DateTimeSuggestion.java
diff --git a/ui/android/java/src/org/chromium/ui/picker/DateTimeSuggestion.java b/ui/android/java/src/org/chromium/ui/picker/DateTimeSuggestion.java
index 4c814681ed373fc9214d26aad7d043a8abfb30fc..f15a0fd21e59fa134a82ba93f3ff76f14ce41e20 100644
--- a/ui/android/java/src/org/chromium/ui/picker/DateTimeSuggestion.java
+++ b/ui/android/java/src/org/chromium/ui/picker/DateTimeSuggestion.java
@@ -43,9 +43,8 @@ public class DateTimeSuggestion {
return false;
}
final DateTimeSuggestion other = (DateTimeSuggestion) object;
- return mValue == other.mValue &&
- mLocalizedValue == other.mLocalizedValue &&
- mLabel == other.mLabel;
+ return mValue == other.mValue && mLocalizedValue == other.mLocalizedValue
+ && mLabel == other.mLabel;
}
@Override

Powered by Google App Engine
This is Rietveld 408576698