SteamWar/SpigotCore
Archiviert
13
0

Remove SWCommandUtils.TabComplete

Dieser Commit ist enthalten in:
yoyosource 2021-03-25 12:27:02 +01:00
Ursprung 23ec2f62f7
Commit 7ab2d5e55d

Datei anzeigen

@ -223,14 +223,6 @@ class SWCommandUtils {
return typeMapper::map; return typeMapper::map;
} }
public static class TabComplete {
final List<String> tabCompletes;
public TabComplete(List<String> tabCompletes) {
this.tabCompletes = tabCompletes;
}
}
public static void addMapper(String name, TypeMapper<?> mapper) { public static void addMapper(String name, TypeMapper<?> mapper) {
if (MAPPER_FUNCTIONS.containsKey(name)) return; if (MAPPER_FUNCTIONS.containsKey(name)) return;
MAPPER_FUNCTIONS.put(name, mapper); MAPPER_FUNCTIONS.put(name, mapper);