| 5 | import org.springframework.context.annotation.FullyQualifiedAnnotationBeanNameGenerator; |
| 6 | |
| 7 | @SpringBootApplication(nameGenerator = FullyQualifiedAnnotationBeanNameGenerator.class) |
| 8 | public class Application { |
| 9 | public static void main(String[] args) { |
| 10 | new SpringApplicationBuilder() |
| 11 | .headless(Boolean.getBoolean("java.awt.headless")) |
| 12 | .main(Application.class) |
| 13 | .sources(Application.class) |
| 14 | .run(args); |
| 15 | } |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected