summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSandeep J <sandeejh@in.ibm.com>2018-09-14 01:36:02 +0530
committerSandeep J <sandeejh@in.ibm.com>2018-09-14 01:37:34 +0530
commite813d40240373396df28a8acdd75405115a8372c (patch)
tree6a238077897087a04f42eb650f6cbef93cf8d325
parent43a039f58457a29e843393ef49f86da119fa415e (diff)
fix sonar issue in ApplicationLoggingFilter.java
fixed sonar issue as detailed in CCSDK-565 Issue-ID: CCSDK-565 Change-Id: Iacef03814e977e8823812bed9d4c5544cb9f7a49 Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
-rw-r--r--ms/controllerblueprints/application/src/main/java/org/onap/ccsdk/apps/controllerblueprints/filters/ApplicationLoggingFilter.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/ms/controllerblueprints/application/src/main/java/org/onap/ccsdk/apps/controllerblueprints/filters/ApplicationLoggingFilter.java b/ms/controllerblueprints/application/src/main/java/org/onap/ccsdk/apps/controllerblueprints/filters/ApplicationLoggingFilter.java
index 9a556e71..fbef55fb 100644
--- a/ms/controllerblueprints/application/src/main/java/org/onap/ccsdk/apps/controllerblueprints/filters/ApplicationLoggingFilter.java
+++ b/ms/controllerblueprints/application/src/main/java/org/onap/ccsdk/apps/controllerblueprints/filters/ApplicationLoggingFilter.java
@@ -1,5 +1,6 @@
/*
* Copyright © 2017-2018 AT&T Intellectual Property.
+ * Modifications Copyright © 2018 IBM.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -71,11 +72,11 @@ public class ApplicationLoggingFilter implements Filter {
@Override
public void init(FilterConfig filterConfig) {
-
+ //method does nothing
}
@Override
public void destroy() {
-
+ //method does nothing
}
} \ No newline at end of file