File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
visualvm/jmx/src/org/graalvm/visualvm/jmx/impl Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -388,7 +388,7 @@ static class Checker {
388
388
private Checker () {
389
389
}
390
390
391
- public static MBeanServerConnection newChecker (
391
+ static MBeanServerConnection newChecker (
392
392
ProxyClient client , MBeanServerConnection mbsc ) {
393
393
final InvocationHandler ih = new CheckerInvocationHandler (mbsc );
394
394
return (MBeanServerConnection ) Proxy .newProxyInstance (
@@ -450,19 +450,19 @@ static class LocalVirtualMachine {
450
450
this .javaHome = home ;
451
451
}
452
452
453
- public int vmid () {
453
+ int vmid () {
454
454
return vmid ;
455
455
}
456
456
457
- public synchronized boolean isManageable () {
457
+ synchronized boolean isManageable () {
458
458
return (address != null );
459
459
}
460
460
461
- public boolean isAttachable () {
461
+ boolean isAttachable () {
462
462
return isAttachSupported ;
463
463
}
464
464
465
- public synchronized void startManagementAgent () throws IOException {
465
+ synchronized void startManagementAgent () throws IOException {
466
466
if (address != null ) {
467
467
// already started
468
468
return ;
@@ -481,7 +481,7 @@ public synchronized void startManagementAgent() throws IOException {
481
481
}
482
482
}
483
483
484
- public synchronized String connectorAddress () {
484
+ synchronized String connectorAddress () {
485
485
// return null if not available or no JMX agent
486
486
return address ;
487
487
}
You can’t perform that action at this time.
0 commit comments