Skip to content

Commit

Permalink
fix: javadoch for AotTestApplication
Browse files Browse the repository at this point in the history
  • Loading branch information
klopfdreh committed Aug 30, 2024
1 parent 4670b85 commit d2a94a1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/test/java/org/kohsuke/aot/AotTestApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@
@SpringBootApplication
public class AotTestApplication {

/**
* Runs a spring boot application to generate AOT hints
*
* @param args
* the command line arguments
*/
public static void main(String[] args) {
new SpringApplicationBuilder(AotTestApplication.class).run(args);
}
Expand Down

0 comments on commit d2a94a1

Please sign in to comment.