mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8284415: Collapse identical catch branches in security libs
Reviewed-by: coffeys, xuelei, wetmore
This commit is contained in:
parent
4f36229c96
commit
8e58d4a589
32 changed files with 74 additions and 197 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 1997, 2021, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1997, 2022, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -867,10 +867,8 @@ public class KeyStore {
|
|||
try {
|
||||
Object[] objs = Security.getImpl(type, "KeyStore", (String)null);
|
||||
return new KeyStore((KeyStoreSpi)objs[0], (Provider)objs[1], type);
|
||||
} catch (NoSuchAlgorithmException nsae) {
|
||||
throw new KeyStoreException(type + " not found", nsae);
|
||||
} catch (NoSuchProviderException nspe) {
|
||||
throw new KeyStoreException(type + " not found", nspe);
|
||||
} catch (NoSuchAlgorithmException | NoSuchProviderException e) {
|
||||
throw new KeyStoreException(type + " not found", e);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 1996, 2021, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1996, 2022, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -1507,9 +1507,7 @@ public abstract class Signature extends SignatureSpi {
|
|||
protected byte[] engineSign() throws SignatureException {
|
||||
try {
|
||||
return cipher.doFinal();
|
||||
} catch (IllegalBlockSizeException e) {
|
||||
throw new SignatureException("doFinal() failed", e);
|
||||
} catch (BadPaddingException e) {
|
||||
} catch (IllegalBlockSizeException | BadPaddingException e) {
|
||||
throw new SignatureException("doFinal() failed", e);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue