(String commandName)
| 302 | } |
| 303 | |
| 304 | private boolean checkCommand(String commandName) { |
| 305 | if (checkPrivate(commandName)) { |
| 306 | return true; |
| 307 | } else { |
| 308 | return checkGlobal(commandName); |
| 309 | } |
| 310 | } |
| 311 | |
| 312 | private boolean checkPrivate(String commandName) { |
| 313 | if (this.privateCommands.containsKey(commandName)) { |
no test coverage detected