Merge pull request #622 from babbaj/schematica

fix crash
This commit is contained in:
Leijurv
2019-07-22 23:57:47 -07:00

View File

@ -32,7 +32,7 @@ public enum SchematicaHelper {
try {
Class.forName(Schematica.class.getName());
return true;
} catch (ClassNotFoundException ex) {
} catch (ClassNotFoundException | NoClassDefFoundError ex) {
return false;
}
}