Version Bump & Added If RegexUtil crashes then program closes.

This commit is contained in:
Speiger 2021-06-22 19:23:49 +02:00
parent b165524c36
commit 8937d44428
2 changed files with 2 additions and 1 deletions

View File

@ -5,7 +5,7 @@ repositories {
}
archivesBaseName = 'Simple Code Generator'
version = '1.0.2'
version = '1.0.3'
apply plugin: 'maven'
tasks.withType(JavaCompile) {

View File

@ -84,6 +84,7 @@ public class RegexUtil
catch(Exception e)
{
e.printStackTrace();
System.exit(0);
}
}
}