mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-06 09:15:49 -05:00
9257ba8af3
checkstyle embeds sun_checks.xml and google_checks.xml so we can use them instead of shipping our own.
18 lines
357 B
Java
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);
|
|
}
|
|
|
|
}
|