summaryrefslogtreecommitdiffstats
path: root/base/ca
diff options
context:
space:
mode:
Diffstat (limited to 'base/ca')
-rw-r--r--base/ca/src/com/netscape/ca/CertificateAuthority.java9
1 files changed, 3 insertions, 6 deletions
diff --git a/base/ca/src/com/netscape/ca/CertificateAuthority.java b/base/ca/src/com/netscape/ca/CertificateAuthority.java
index 50ef503b6..73ce6dfe4 100644
--- a/base/ca/src/com/netscape/ca/CertificateAuthority.java
+++ b/base/ca/src/com/netscape/ca/CertificateAuthority.java
@@ -960,8 +960,7 @@ public class CertificateAuthority implements ICertificateAuthority, ICertAuthori
statsSub.startTiming("signing");
}
- try {
- DerOutputStream out = new DerOutputStream();
+ try (DerOutputStream out = new DerOutputStream()) {
DerOutputStream tmp = new DerOutputStream();
if (algname == null) {
@@ -1034,8 +1033,7 @@ public class CertificateAuthority implements ICertificateAuthority, ICertAuthori
statsSub.startTiming("signing");
}
- try {
- DerOutputStream out = new DerOutputStream();
+ try (DerOutputStream out = new DerOutputStream()) {
DerOutputStream tmp = new DerOutputStream();
if (certInfo == null) {
@@ -1931,8 +1929,7 @@ public class CertificateAuthority implements ICertificateAuthority, ICertAuthori
}
private BasicOCSPResponse sign(ResponseData rd) throws EBaseException {
- try {
- DerOutputStream out = new DerOutputStream();
+ try (DerOutputStream out = new DerOutputStream()) {
DerOutputStream tmp = new DerOutputStream();
String algname = mOCSPSigningUnit.getDefaultAlgorithm();