Merge pull request #622 from babbaj/schematica

fix crash
This commit is contained in:
Leijurv 2019-07-22 23:57:47 -07:00
commit 44a092cd94
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A
1 changed files with 1 additions and 1 deletions

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;
}
}