aboutsummaryrefslogtreecommitdiffstats
path: root/certService/src/main
diff options
context:
space:
mode:
authorBogumil Zebek <bogumil.zebek@nokia.com>2020-02-14 07:42:58 +0000
committerGerrit Code Review <gerrit@onap.org>2020-02-14 07:42:58 +0000
commit32c05c20e08b0c57da8a6e9eb0df25472c57ede0 (patch)
tree3ab68f3850943220784910755a0cc883edc7b5bb /certService/src/main
parentaf6d01e53ea3d9a8a4b140cef078a6df39a36aba (diff)
parentc69b37ae471d0671870ad6a91014fa1688de611b (diff)
Merge "Suppress irrelevant Sonar warnings"
Diffstat (limited to 'certService/src/main')
-rw-r--r--certService/src/main/java/org/onap/aaf/certservice/CertServiceApplication.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/certService/src/main/java/org/onap/aaf/certservice/CertServiceApplication.java b/certService/src/main/java/org/onap/aaf/certservice/CertServiceApplication.java
index c121e7c9..e6b27ca8 100644
--- a/certService/src/main/java/org/onap/aaf/certservice/CertServiceApplication.java
+++ b/certService/src/main/java/org/onap/aaf/certservice/CertServiceApplication.java
@@ -26,7 +26,9 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class CertServiceApplication {
- public static void main(String[] args) {
+ // We are excluding this line in Sonar due to fact that
+ // Spring is handling arguments
+ public static void main(String[] args) { // NOSONAR
SpringApplication.run(CertServiceApplication.class, args);
}