Browse Source

Fix introduced compile error

Ian Wright 8 years ago
parent
commit
b180543484

+ 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) {