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

Unified Diff: android_webview/java/src/org/chromium/android_webview/AwAutofillClient.java

Issue 1054203002: Enable NeedsBraces check and fix some checkstyle issues. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added if checks Created 5 years, 9 months 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: android_webview/java/src/org/chromium/android_webview/AwAutofillClient.java
diff --git a/android_webview/java/src/org/chromium/android_webview/AwAutofillClient.java b/android_webview/java/src/org/chromium/android_webview/AwAutofillClient.java
index 09c944012f949638d37627259d6824c65e4f694c..1657a96817be4edf9f10419b8387084bf22e1a8b 100644
--- a/android_webview/java/src/org/chromium/android_webview/AwAutofillClient.java
+++ b/android_webview/java/src/org/chromium/android_webview/AwAutofillClient.java
@@ -64,8 +64,7 @@ public class AwAutofillClient {
@CalledByNative
public void hideAutofillPopup() {
- if (mAutofillPopup == null)
- return;
+ if (mAutofillPopup == null) return;
mAutofillPopup.dismiss();
mAutofillPopup = null;
}

Powered by Google App Engine
This is Rietveld 408576698