mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8274079: Cleanup unnecessary calls to Throwable.initCause() in java.base module
Reviewed-by: weijun
This commit is contained in:
parent
8609ea55ac
commit
1459180f35
22 changed files with 55 additions and 132 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2001, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2001, 2021, 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
|
||||
|
@ -32,7 +32,6 @@ import javax.security.auth.x500.X500Principal;
|
|||
|
||||
import sun.security.util.AnchorCertificates;
|
||||
import sun.security.x509.NameConstraintsExtension;
|
||||
import sun.security.x509.X500Name;
|
||||
|
||||
/**
|
||||
* A trust anchor or most-trusted Certification Authority (CA).
|
||||
|
@ -286,10 +285,7 @@ public class TrustAnchor {
|
|||
try {
|
||||
nc = new NameConstraintsExtension(Boolean.FALSE, bytes);
|
||||
} catch (IOException ioe) {
|
||||
IllegalArgumentException iae =
|
||||
new IllegalArgumentException(ioe.getMessage());
|
||||
iae.initCause(ioe);
|
||||
throw iae;
|
||||
throw new IllegalArgumentException(ioe.getMessage(), ioe);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -371,7 +371,7 @@ public class X509CRLSelector implements CRLSelector {
|
|||
try {
|
||||
x500Principals.add(new X500Principal((byte[])nameObject));
|
||||
} catch (IllegalArgumentException e) {
|
||||
throw (IOException)new IOException("Invalid name").initCause(e);
|
||||
throw new IOException("Invalid name", e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue