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
No known key found for this signature in database
GPG key ID: B981B5586F405AD1
2 changed files with 1 additions and 8 deletions

View file

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

View file

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