Format java files with google-java-format

google-java-format was not run after squashing string concatenations
in change I7348413ae.

Change-Id: I30afb262cca64e7638657d59ebb81938c22f0242
This commit is contained in:
David Pursehouse
2017-02-17 13:21:04 +09:00
parent 34f51034c9
commit 42ace3c4f4
16 changed files with 26 additions and 56 deletions

View File

@@ -181,8 +181,7 @@ class ProjectBasicAuthFilter implements Filter {
private boolean failAuthentication(Response rsp, String username) throws IOException {
log.warn(
"Authentication failed for {}: password does not match the one stored in Gerrit",
username);
"Authentication failed for {}: password does not match the one stored in Gerrit", username);
rsp.sendError(SC_UNAUTHORIZED);
return false;
}