Remove redundant Main class, use RoadTrip instead

This commit is contained in:
Alexander Staeding
2021-06-29 00:00:24 +02:00
parent aff4e4c693
commit 19be81d88d
2 changed files with 1 additions and 8 deletions

View File

@ -30,7 +30,7 @@ java {
} }
application { application {
mainClass.set("h07.Main") mainClass.set("h07.experiment.RoadTrip")
} }
tasks { tasks {

View File

@ -1,7 +0,0 @@
package h07;
public class Main {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}