cleanup: remove unnecessary interface modifiers
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user