Skip to content

Commit 7b8ea78

Browse files
committed
Remove unused method
1 parent 07b0e17 commit 7b8ea78

File tree

1 file changed

+1
-13
lines changed
  • nucleus/common/amx-core/src/main/java/org/glassfish/admin/amx/impl/mbean

1 file changed

+1
-13
lines changed

nucleus/common/amx-core/src/main/java/org/glassfish/admin/amx/impl/mbean/MBeanImplBase.java

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/*
22
* Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2025 Contributors to the Eclipse Foundation. All rights reserved.
34
*
45
* This program and the accompanying materials are made available under the
56
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -438,19 +439,6 @@ protected void debug(final Object... args) {
438439
debug(StringUtil.toString("", args));
439440
}
440441
}
441-
442-
protected boolean sleepMillis(final long millis) {
443-
boolean interrupted = false;
444-
445-
try {
446-
Thread.sleep(millis);
447-
} catch (InterruptedException e) {
448-
Thread.interrupted();
449-
interrupted = true;
450-
}
451-
452-
return interrupted;
453-
}
454442
}
455443

456444

0 commit comments

Comments
 (0)