浏览代码

Fix introduced compile error

Ian Wright 8 年之前
父节点
当前提交
b180543484
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/main/java/password/pwm/util/CASFilterAuthenticationProvider.java

+ 1 - 1
src/main/java/password/pwm/util/CASFilterAuthenticationProvider.java

@@ -228,7 +228,7 @@ public class CASFilterAuthenticationProvider implements PwmHttpFilterAuthenticat
             } catch (InvalidKeySpecException e1) {
                 LOGGER.error("Decryption failed", e1);
                 return password;
-            } catch (NoSuchAlgorithmException | NoSuchPaddingException e1) {
+            } catch (NoSuchPaddingException e1) {
                 LOGGER.error("Decryption failed", e1);
                 return password;
             } catch (IOException e1) {