Merge "removed some unused imports"
[portal.git] / ecomp-portal-BE-os / src / main / java / org / onap / portalapp / portal / service / TicketEventServiceImpl.java
index 5dba0b2..e92b712 100644 (file)
@@ -3,6 +3,8 @@
  * ONAP Portal
  * ===================================================================
  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * 
+ * Modifications Copyright (C) 2018 IBM.
  * ===================================================================
  *
  * Unless otherwise specified, all software contained herein is licensed
@@ -37,7 +39,6 @@
  */
 package org.onap.portalapp.portal.service;
 
-import org.onap.portalapp.portal.service.TicketEventService;
 import org.onap.portalapp.portal.utils.EPCommonSystemProperties;
 import org.onap.portalsdk.core.util.SystemProperties;
 import org.springframework.stereotype.Service;
@@ -49,8 +50,6 @@ public class TicketEventServiceImpl implements TicketEventService{
 
        @Override
        public String getNotificationHyperLink(JsonNode application, String ticket, String eventSource) {
-               String hyperlink = SystemProperties.getProperty(EPCommonSystemProperties.EXTERNAL_SYSTEM_NOTIFICATION_URL)+ticket;
-               return hyperlink;
+               return (SystemProperties.getProperty(EPCommonSystemProperties.EXTERNAL_SYSTEM_NOTIFICATION_URL)+ticket);
        }
-
 }