Remove unused value assignments

IntelliJ > Run Inspection by name > Unused assignments

Change-Id: Iecf5a5f430b08c5a29a1ba2a363c3de6506bfdde
This commit is contained in:
Patrick Hiesel
2018-09-20 14:31:14 +02:00
parent 734205471b
commit 4746349d41
29 changed files with 42 additions and 55 deletions

View File

@@ -118,7 +118,7 @@ class ProjectOAuthFilter implements Filter {
}
private boolean verify(HttpServletRequest req, Response rsp) throws IOException {
AuthInfo authInfo = null;
AuthInfo authInfo;
// first check if there is a BASIC authentication header
String hdr = req.getHeader(AUTHORIZATION);