From: Sandeep J Date: Thu, 13 Sep 2018 20:13:08 +0000 (+0530) Subject: fixed sonar issue in CorsFilter.java X-Git-Tag: 0.4.2~160^2~109^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=cb8273d76582e975358e28a5e3ee5ae1ac4345a2;p=ccsdk%2Fcds.git fixed sonar issue in CorsFilter.java fixed sonar issue as detailed in CCSDK-566 Issue-ID: CCSDK-566 Change-Id: I5ec97cca3c0b632fb1219e981be950fce771e224 Signed-off-by: Sandeep J --- diff --git a/ms/controllerblueprints/application/src/main/java/org/onap/ccsdk/apps/controllerblueprints/filters/CorsFilter.java b/ms/controllerblueprints/application/src/main/java/org/onap/ccsdk/apps/controllerblueprints/filters/CorsFilter.java index 91cc731d0..b97fa1788 100644 --- a/ms/controllerblueprints/application/src/main/java/org/onap/ccsdk/apps/controllerblueprints/filters/CorsFilter.java +++ b/ms/controllerblueprints/application/src/main/java/org/onap/ccsdk/apps/controllerblueprints/filters/CorsFilter.java @@ -1,6 +1,7 @@ /* * 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. * You may obtain a copy of the License at @@ -34,6 +35,7 @@ import java.io.IOException; public class CorsFilter implements Filter { public void destroy() { + //method does nothing } public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain chain) @@ -56,6 +58,7 @@ public class CorsFilter implements Filter { } public void init(FilterConfig fConfig) throws ServletException { + //method does nothing } } \ No newline at end of file