We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4aea262 commit c682ac4Copy full SHA for c682ac4
src/main/java/ru/mystamps/web/support/spring/boot/ApplicationBootstrap.java
@@ -29,6 +29,9 @@
29
import ru.mystamps.web.config.ApplicationContext;
30
import ru.mystamps.web.config.DispatcherServletContext;
31
32
+// PMD: "All methods are static" here because it's a program entry point.
33
+// CheckStyle: I cannot declare the constructor as private because app won't start.
34
+@SuppressWarnings({ "PMD.UseUtilityClass", "checkstyle:hideutilityclassconstructor" })
35
@EnableAutoConfiguration
36
@Import({
37
ApplicationContext.class,
0 commit comments