File tree Expand file tree Collapse file tree 3 files changed +18
-4
lines changed Expand file tree Collapse file tree 3 files changed +18
-4
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "permissions" : {
3
+ "allow" : [
4
+ " Bash(mvn checkstyle:check:*)"
5
+ ],
6
+ "deny" : [],
7
+ "ask" : []
8
+ }
9
+ }
Original file line number Diff line number Diff line change 1
1
<!DOCTYPE suppressions PUBLIC "-//Checkstyle//DTD Suppression DTD//EN" "https://checkstyle.org/dtds/suppressions_1_2.dtd">
2
2
<suppressions >
3
3
<suppress checks =" MissingJavadocMethod" files =" .*\.java" />
4
- <suppress checks =" HideUtilityClassConstructor" files =" org/lzwjava /.*\.java" />
5
- <suppress checks =" DesignForExtension" files =" org/lzwjava /.*\.java" />
6
- <suppress checks =" BanSystemOut" files =" org/lzwjava /Application.java" />
4
+ <suppress checks =" HideUtilityClassConstructor" files =" src/main/java/ org/lzw /.*\.java" />
5
+ <suppress checks =" DesignForExtension" files =" src/main/java/ org/lzw /.*\.java" />
6
+ <suppress checks =" BanSystemOut" files =" src/main/java/ org/lzw /Application.java" />
7
7
</suppressions >
Original file line number Diff line number Diff line change 1
1
package org .lzw ;
2
2
3
+ import org .slf4j .Logger ;
4
+ import org .slf4j .LoggerFactory ;
5
+
3
6
public class Application {
4
7
8
+ private static final Logger log = LoggerFactory .getLogger (Application .class );
9
+
5
10
public static void main (String [] args ) {
6
- System . out . println ("Application started without Spring Boot" );
11
+ log . info ("Application started without Spring Boot" );
7
12
}
8
13
}
You can’t perform that action at this time.
0 commit comments