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 {
new String(new sun.misc.BASE64Decoder().decodeBuffer(header.substring(6)))
} catch {
case _ => ""
case _: Throwable => ""
}
}
}