mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-07 17:53:14 -05:00
32b3cde716
* Enable @SuppressWarnings annotation support by default for Java checkstyle * Ensure that args is used * Add updates to the sun_checks in .github/linters * Comment out Javadoc linter to remove need for package-info * Fix expected-JAVA.tap to match new test cases * Fix expected-JAVA.tap to match output Co-authored-by: Lukas Gravley <admiralawkbar@github.com>
12 lines
181 B
Java
12 lines
181 B
Java
public class Application {
|
|
|
|
/**
|
|
* main.
|
|
*
|
|
* @param args
|
|
*/
|
|
public static void main(final String[] args) {
|
|
SpringApplication.run(Application.class, args);
|
|
}
|
|
|
|
}
|