*
* @param usernames Usernames whose UUID to get
* @return UUID of the specified usernames
*/
public static Map<String, UUID> getUUID(String... usernames) {
UUIDFetcher fetcher = new UUIDFetcher(usernames);
try {
return fetcher.call();
} catch (Exception exception) {
return ImmutableMap.of();
}
}