Skip to content

Commit ec38d00

Browse files
committed
fix: wrong package for Main class
1 parent 50a2f18 commit ec38d00

File tree

1 file changed

+1
-1
lines changed
  • tests/feat-kubernetes-nodeselector-annotation/src/main/java/io/dekorate/example

1 file changed

+1
-1
lines changed

tests/feat-kubernetes-nodeselector-annotation/src/main/java/io/dekorate/example/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
@SpringBootApplication
2525
public class Main {
2626
public static void main(String[] args) {
27-
SpringApplication.run(com.sun.tools.javac.Main.class, args);
27+
SpringApplication.run(Main.class, args);
2828
}
2929
}

0 commit comments

Comments
 (0)