Fixed major sonar issue in Application.java 81/74181/1
authorezhil <ezhrajam@in.ibm.com>
Tue, 4 Dec 2018 08:51:35 +0000 (14:21 +0530)
committerezhil <ezhrajam@in.ibm.com>
Tue, 4 Dec 2018 08:51:45 +0000 (14:21 +0530)
Removed Sysout from Application
Issue-ID: CCSDK-786
Change-Id: I9806e98d4a30145f33da757b109cb781f3f1dccd
Signed-off-by: ezhil <ezhrajam@in.ibm.com>
ms/neng/src/main/java/org/onap/ccsdk/apps/ms/neng/core/Application.java

index 1287a27..561273b 100644 (file)
@@ -3,6 +3,7 @@
  * ONAP : CCSDK.apps
  * ================================================================================
  * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
+ * Modifications Copyright (C) 2018 IBM.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -70,7 +71,6 @@ public class Application extends SpringBootServletInitializer {
             String[] beanNames = ctx.getBeanDefinitionNames();
             Arrays.sort(beanNames);
             for (String beanName : beanNames) {
-                System.out.println(beanName);
                 log.info(beanName);
             }
             log.info("################################");