SteamWar/SpigotCore
Archiviert
13
0

CommandFramework #107

Geschlossen
YoyoNow möchte 27 Commits von CommandFramework nach master mergen
Nur Änderungen aus Commit 698f2c6cbb werden angezeigt - Alle Commits anzeigen

Datei anzeigen

@ -162,7 +162,7 @@ public abstract class SWCommand {
}
private List<Method> methods() {
List<Method> methods = Arrays.asList(getClass().getDeclaredMethods());
List<Method> methods = new ArrayList<>(Arrays.asList(getClass().getDeclaredMethods()));
methods.addAll(Arrays.asList(SWCommand.class.getDeclaredMethods()));
return methods;
}