File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/java/org/mcphackers/mcp/main Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ plugins {
77sourceCompatibility = JavaVersion . VERSION_1_8
88targetCompatibility = JavaVersion . VERSION_1_8
99
10- mainClassName = ' org.mcphackers.mcp.main.MainGUI '
10+ mainClassName = ' org.mcphackers.mcp.main.MainCLI '
1111
1212repositories {
1313 mavenCentral()
@@ -40,7 +40,7 @@ dependencies {
4040
4141application {
4242 // Redirect all execution into the testing folder
43- mainClass = ' org.mcphackers.mcp.main.MainGUI '
43+ mainClass = mainClassName
4444 executableDir = ' test'
4545}
4646
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ public static void main(String[] args) throws Exception {
5151 AnsiConsole .systemInstall ();
5252 }
5353 else {
54- System .err .println ("Error: Could not find console. Launching GUI instead " );
54+ // System.out .println("Could not find console. Launching GUI");
5555 MainGUI .main (args );
5656 return ;
5757 }
You can’t perform that action at this time.
0 commit comments