(String commandName)
| 310 | } |
| 311 | |
| 312 | private boolean checkPrivate(String commandName) { |
| 313 | if (this.privateCommands.containsKey(commandName)) { |
| 314 | if (this.privateCommands.get(commandName).isDebug()) { |
| 315 | return this.isDebug(); |
| 316 | } else { |
| 317 | return true; |
| 318 | } |
| 319 | } else { |
| 320 | return false; |
| 321 | } |
| 322 | } |
| 323 | |
| 324 | /** |
| 325 | * Checks if a Global command exists. |
no test coverage detected