9
0
mirror of https://github.com/HibiscusMC/HMCCosmetics.git synced 2025-12-19 15:09:19 +00:00

chore: remove unused hasClass method (use HibiscusCommons method instead)

This commit is contained in:
LoJoSho
2025-01-16 13:26:59 -06:00
parent 14e38e7974
commit 68d94be743

View File

@@ -157,13 +157,4 @@ public class HMCCServerUtils {
} }
return nextYaw; return nextYaw;
} }
public static boolean hasClass(String className) {
try {
Class.forName(className);
return true;
} catch (ClassNotFoundException e) {
return false;
}
}
} }