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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/WebappAuthenticator.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: chrome/android/java/src/org/chromium/chrome/browser/WebappAuthenticator.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/WebappAuthenticator.java b/chrome/android/java/src/org/chromium/chrome/browser/WebappAuthenticator.java
index f5c4ffad5fdfb0deb7f7467d69222d48bc7cf186..480f946a3e7d3e045867463a2fadd42c07c1d3c8 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/WebappAuthenticator.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/WebappAuthenticator.java
@@ -129,8 +129,8 @@ public class WebappAuthenticator {
byte[] keyBytes = key.getEncoded();
FileOutputStream output = null;
if (MAC_KEY_BYTE_COUNT != keyBytes.length) {
- Log.e(TAG, "writeKeyToFile got key encoded bytes length " + keyBytes.length +
- "; expected " + MAC_KEY_BYTE_COUNT);
+ Log.e(TAG, "writeKeyToFile got key encoded bytes length " + keyBytes.length
+ + "; expected " + MAC_KEY_BYTE_COUNT);
return false;
}

Powered by Google App Engine
This is Rietveld 408576698