diff options
author | Manoop Talasila <talasila@research.att.com> | 2019-07-09 14:51:55 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-07-09 14:51:55 +0000 |
commit | 201b1e4f114873e6cb3bf80c4a7ccd064d480933 (patch) | |
tree | 2221a7aa0eb74a05082d0308acb7f2774eab712e /ecomp-sdk/epsdk-app-common/src/main | |
parent | 179ff1eb0c1ac9eef4d152c47df5cb12a4584c0f (diff) | |
parent | b0ce178103661fa82243bc8fa326cbc7969829f8 (diff) |
Merge "Fix sonar issue in ReportDashboardController.java"
Diffstat (limited to 'ecomp-sdk/epsdk-app-common/src/main')
-rw-r--r-- | ecomp-sdk/epsdk-app-common/src/main/java/org/onap/portalapp/controller/sample/ReportDashboardController.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ecomp-sdk/epsdk-app-common/src/main/java/org/onap/portalapp/controller/sample/ReportDashboardController.java b/ecomp-sdk/epsdk-app-common/src/main/java/org/onap/portalapp/controller/sample/ReportDashboardController.java index 2ac5d8a4..e2a694b6 100644 --- a/ecomp-sdk/epsdk-app-common/src/main/java/org/onap/portalapp/controller/sample/ReportDashboardController.java +++ b/ecomp-sdk/epsdk-app-common/src/main/java/org/onap/portalapp/controller/sample/ReportDashboardController.java @@ -58,7 +58,7 @@ import org.springframework.web.servlet.ModelAndView; public class ReportDashboardController extends RestrictedBaseController { @RequestMapping(value = {"/report_dashboard" }, method = RequestMethod.GET) public ModelAndView adminView(HttpServletRequest request) { - Map<String, Object> model = new HashMap<String, Object>(); + Map<String, Object> model = new HashMap<>(); return new ModelAndView(getViewName(),"model", model); } }
\ No newline at end of file |