superlint/test/linters/java/java_good_2.java
Marco Ferrari 9257ba8af3
build: use embedded checkstyle configuration files (#5089)
checkstyle embeds sun_checks.xml and google_checks.xml so we can use
them instead of shipping our own.
2024-01-02 18:47:45 +01:00

18 lines
357 B
Java

@SuppressWarnings("checkstyle:hideutilityclassconstructor")
public class Application {
protected StringUtils() {
// prevents calls from subclass
throw new UnsupportedOperationException();
}
/**
* main.
*
* @param args
*/
public static void main(final String[] args) {
SpringApplication.run(Application.class, args);
}
}