We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bb5fab commit ebb206cCopy full SHA for ebb206c
visualvm/jmx/src/org/graalvm/visualvm/jmx/impl/ProxyClient.java
@@ -241,8 +241,7 @@ private void connectImpl() {
241
} catch (Exception e) {
242
setConnectionState(JmxModel.ConnectionState.DISCONNECTED);
243
// Workaround for GlassFish's LoginException class not found
244
- if (e.toString().contains("com.sun.enterprise.security.LoginException")) {
245
- // NOI18N
+ if (e.toString().contains("com.sun.enterprise.security.LoginException")) { // NOI18N
246
throw new SecurityException("Authentication failed! Invalid username or password"); // NOI18N
247
}
248
if (LOGGER.isLoggable(Level.FINE)) {
0 commit comments