From e89e85459d467ecaf794e79ca56c3d1083b77290 Mon Sep 17 00:00:00 2001 From: Driptaroop Das Date: Wed, 5 Dec 2018 21:34:11 +0530 Subject: [PATCH] PORTAL-491 - EPFusionBaseController.java Replace the type specification in this constructor call with the diamond operator ("<>") - EPFusionBaseController.java Issue-ID: PORTAL-491 Change-Id: I57976f175272272151726b3db0ff7da97a8f17e6 Signed-off-by: Driptaroop Das --- .../java/org/onap/portalapp/controller/EPFusionBaseController.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ecomp-portal-BE-common/src/main/java/org/onap/portalapp/controller/EPFusionBaseController.java b/ecomp-portal-BE-common/src/main/java/org/onap/portalapp/controller/EPFusionBaseController.java index 611d9665..9d801b01 100644 --- a/ecomp-portal-BE-common/src/main/java/org/onap/portalapp/controller/EPFusionBaseController.java +++ b/ecomp-portal-BE-common/src/main/java/org/onap/portalapp/controller/EPFusionBaseController.java @@ -3,6 +3,8 @@ * ONAP Portal * =================================================================== * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. + * + * Modifications Copyright © 2018 IBM. * =================================================================== * * Unless otherwise specified, all software contained herein is licensed @@ -74,7 +76,7 @@ public abstract class EPFusionBaseController extends FusionBaseController { @ModelAttribute("menu") public Map messages(HttpServletRequest request) { HttpSession session = null; - Map model = new HashMap(); + Map model = new HashMap<>(); session = request.getSession(); EPUser user = EPUserUtils.getUserSession(request); if (session != null && user != null) { -- 2.16.6