(String[] args)
| 75 | } |
| 76 | |
| 77 | public static Players findByID(String[] args) { return findByID(String.join(" ", args)); } |
| 78 | public static Players findByID(String arg) { |
| 79 | String args = arg + " "; |
| 80 | TempData target = TempData.find(p -> args.startsWith(p.player.uuid() + " ")); |
no test coverage detected