Fixed warning.

This commit is contained in:
takezoe
2013-04-26 01:53:43 +09:00
parent c79fa97c7a
commit 0227dd04cd

View File

@@ -46,7 +46,7 @@ class BasicAuthenticationFilter extends Filter {
try { try {
new String(new sun.misc.BASE64Decoder().decodeBuffer(header.substring(6))) new String(new sun.misc.BASE64Decoder().decodeBuffer(header.substring(6)))
} catch { } catch {
case _ => "" case _: Throwable => ""
} }
} }
} }