Add back in the UUID upgrade classes just in case anyone from 2014 shows

up
This commit is contained in:
nossr50
2019-05-06 00:19:42 -07:00
parent 71a2ea2a2e
commit 08269cab5b
2 changed files with 7 additions and 9 deletions

View File

@@ -104,6 +104,6 @@ public class UUIDFetcher implements Callable<Map<String, UUID>> {
}
public static UUID getUUIDOf(String name) throws Exception {
return new UUIDFetcher(Collections.singletonList(name)).call().get(name);
return new UUIDFetcher(Arrays.asList(name)).call().get(name);
}
}
}