Index: android_webview/java/src/org/chromium/android_webview/HttpAuthDatabase.java |
diff --git a/android_webview/java/src/org/chromium/android_webview/HttpAuthDatabase.java b/android_webview/java/src/org/chromium/android_webview/HttpAuthDatabase.java |
index baa7680fa30b0b200be10c5e321eed4a4de85aa3..6e65e060a7033ecacafdebf90f8060e191e987fe 100644 |
--- a/android_webview/java/src/org/chromium/android_webview/HttpAuthDatabase.java |
+++ b/android_webview/java/src/org/chromium/android_webview/HttpAuthDatabase.java |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+// Copyright 2012 The Chromium Authors. All rights reserved. |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
@@ -184,7 +184,7 @@ public class HttpAuthDatabase { |
* String[1] is password. Null is returned if it can't find anything. |
*/ |
public String[] getHttpAuthUsernamePassword(String host, String realm) { |
- if (host == null || realm == null || !waitForInit()){ |
+ if (host == null || realm == null || !waitForInit()) { |
return null; |
} |