Skip to content

Commit 66bfdc9

Browse files
authored
Using command line arguments is security-sensitive
Unless there is a need to pass in application arguments, this should be avoided. See: https://rules.sonarsource.com/java/type/Security%20Hotspot/RSPEC-4823
1 parent 9cb36a6 commit 66bfdc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

service/src/main/java/com/bnc/sbjb/Application.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
public class Application {
1010

1111
public static void main(String[] args) {
12-
SpringApplication.run(Application.class, args);
12+
SpringApplication.run(Application.class);
1313
}
1414

1515
@PostConstruct

0 commit comments

Comments
 (0)