Skip to content

Commit

Permalink
fix: wrong package for Main class
Browse files Browse the repository at this point in the history
  • Loading branch information
iocanel committed Nov 26, 2024
1 parent 50a2f18 commit ec38d00
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
@SpringBootApplication
public class Main {
public static void main(String[] args) {
SpringApplication.run(com.sun.tools.javac.Main.class, args);
SpringApplication.run(Main.class, args);
}
}

0 comments on commit ec38d00

Please sign in to comment.