(UUID playerUUID)
| 11 | public class API { |
| 12 | |
| 13 | public static Profile getProfile(UUID playerUUID) { |
| 14 | return ProfileService.get().getByUUID(playerUUID); |
| 15 | } |
| 16 | |
| 17 | public static Profile getProfile(Player player) { |
| 18 | return ProfileService.get().getByUUID(player.getUniqueId()); |
no test coverage detected