(String[] args)
| 83 | } |
| 84 | |
| 85 | public static Players findByNameOrID(String[] args) { return findByNameOrID(String.join(" ", args)); } |
| 86 | public static Players findByNameOrID(String arg) { |
| 87 | Players target = Players.findByName(arg); |
| 88 | return target.found ? target : Players.findByID(arg); |
no test coverage detected