MCPcopy Create free account
hub / github.com/ZetaMap/MoreCommands / get

Method get

src/main/java/manager/CommandsManager.java:14–17  ·  view source on GitHub ↗
(String name)

Source from the content-addressed store, hash-verified

12 private static volatile boolean canLoad = false;
13
14 public static Commands get(String name) {
15 Boolean result = commands.get(name);
16 return result == null ? null : new Commands(name, result);
17 }
18
19 public static void add(String name, boolean value) {
20 commands.put(name, value);

Callers 2

updateMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected