Fix FU check

This commit is contained in:
KennyTV 2020-06-08 15:58:10 +02:00
parent 623cdaf881
commit 39cb8fd554
No known key found for this signature in database
GPG Key ID: 6BE3B555EBC5982B

View File

@ -15,7 +15,7 @@ public class CollectionUtil {
private static boolean checkForFastUtil() {
try {
Class.forName("Int2IntMap");
Class.forName("it.unimi.dsi.fastutil.ints.Int2IntMap");
return true;
} catch (ClassNotFoundException e) {
return false;