Skip to content

Commit

Permalink
TKSS-741: Remove redundant semicolons from DerValue and PKCS7
Browse files Browse the repository at this point in the history
  • Loading branch information
johnshajiang committed Mar 22, 2024
1 parent 26e9291 commit ceee95b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ private static byte[] string2bytes(byte stringTag, String value) {
break;
default:
throw new IllegalArgumentException("Unsupported DER string type");
};
}
return value.getBytes(charset);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ private void parseNetscapeCertChain(DerValue val) throws IOException {

CertificateFactory certfac = null;
try {
certfac = PKIXInsts.getCertificateFactory("X.509");;
certfac = PKIXInsts.getCertificateFactory("X.509");
} catch (CertificateException ce) {
// do nothing
}
Expand Down

0 comments on commit ceee95b

Please sign in to comment.