GP-1016: Fixing single jar mode exception

This commit is contained in:
Ryan Kurtz 2021-06-04 11:44:07 -04:00
parent a3f3f7eb82
commit 2eea089265
3 changed files with 26 additions and 12 deletions

View file

@ -65,6 +65,10 @@ public class ApplicationModule implements Comparable<ApplicationModule> {
return moduleDir.getParentFile().getName().equalsIgnoreCase("Framework");
}
public boolean isDebug() {
return moduleDir.getParentFile().getName().equalsIgnoreCase("Debug");
}
public boolean isProcessor() {
return moduleDir.getParentFile().getName().equalsIgnoreCase("Processors");
}