cleanup: remove unnecessary interface modifiers

This commit is contained in:
P0nk
2021-04-08 07:33:52 +02:00
parent dde52653e5
commit f37d4063fb
20 changed files with 79 additions and 75 deletions

View File

@@ -22,10 +22,10 @@
package server;
public interface TimerManagerMBean {
public boolean isTerminated();
public boolean isShutdown();
public long getCompletedTaskCount();
public long getActiveCount();
public long getTaskCount();
public int getQueuedTasks();
boolean isTerminated();
boolean isShutdown();
long getCompletedTaskCount();
long getActiveCount();
long getTaskCount();
int getQueuedTasks();
}