Permalink
1 comment
on commit
sign in to comment.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
8274757: Cleanup unnecessary calls to Throwable.initCause() in java.m…
…anagement module Reviewed-by: dfuchs, sspitsyn
- Loading branch information
Showing
with
18 additions
and 50 deletions.
- +1 −2 src/java.management.rmi/share/classes/javax/management/remote/rmi/RMIConnectionImpl.java
- +2 −4 src/java.management.rmi/share/classes/javax/management/remote/rmi/RMIConnector.java
- +4 −8 src/java.management.rmi/share/classes/javax/management/remote/rmi/RMIConnectorServer.java
- +1 −4 src/java.management/share/classes/com/sun/jmx/interceptor/DefaultMBeanServerInterceptor.java
- +1 −3 src/java.management/share/classes/com/sun/jmx/remote/internal/ArrayNotificationBuffer.java
- +4 −15 src/java.management/share/classes/com/sun/jmx/remote/internal/ClientNotifForwarder.java
- +1 −3 src/java.management/share/classes/com/sun/jmx/remote/internal/ServerNotifForwarder.java
- +1 −4 src/java.management/share/classes/com/sun/jmx/remote/security/JMXPluggableAuthenticator.java
- +2 −5 src/java.management/share/classes/javax/management/openmbean/OpenMBeanAttributeInfoSupport.java
- +1 −2 src/java.management/share/classes/javax/management/remote/JMXConnectorFactory.java
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1648,8 +1648,7 @@ public ClassLoader run() throws Exception { | ||
*/ | ||
private static IOException newIOException(String message, | ||
Throwable cause) { | ||
return new IOException(message, cause); | ||
} | ||
|
||
/** | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -619,8 +619,7 @@ public boolean test(Provider<P> sp) { | ||
if (e instanceof IOException) { | ||
exception = (IOException) e; | ||
} else { | ||
exception = new IOException(e.getMessage(), e); | ||
} | ||
} | ||
} | ||
1c45c8a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review
Issues