(String name)
| 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); |
no outgoing calls
no test coverage detected