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

@@ -26,5 +26,5 @@ import java.util.List;
* @author Ronan
*/
public interface SchedulerListener {
public void removedScheduledEntries(List<Object> entries, boolean update);
void removedScheduledEntries(List<Object> entries, boolean update);
}

View File

@@ -24,7 +24,7 @@ package net.server.services;
* @author Ronan
*/
public interface ServiceType <T extends Enum<?>> {
public abstract Service createService();
public int ordinal();
public T[] enumValues();
Service createService();
int ordinal();
T[] enumValues();
}