From ebcc0756939e3883d91c74527fb6b5be813cfcd6 Mon Sep 17 00:00:00 2001 From: anushadasari Date: Wed, 7 Aug 2019 17:18:14 +0530 Subject: Remove Unused Import The imports part of a file should be handled by the Integrated Development Environment (IDE), not manually by the developer. Unused and useless imports should not occur if that is the case. Leaving them in reduces the code's readability, since their presence can be confusing. Issue-ID: VID-563 Change-Id: Id88ce00cca08b58e0ac4beb60026c9dae5dd892e Signed-off-by: anushadasari --- vid-app-common/src/main/java/org/onap/vid/model/Subscriber.java | 2 -- 1 file changed, 2 deletions(-) (limited to 'vid-app-common/src/main/java/org/onap/vid/model/Subscriber.java') diff --git a/vid-app-common/src/main/java/org/onap/vid/model/Subscriber.java b/vid-app-common/src/main/java/org/onap/vid/model/Subscriber.java index 9ec917d9c..6b75b6d90 100644 --- a/vid-app-common/src/main/java/org/onap/vid/model/Subscriber.java +++ b/vid-app-common/src/main/java/org/onap/vid/model/Subscriber.java @@ -24,8 +24,6 @@ package org.onap.vid.model; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; -import java.util.Map; - /** * Created by Oren on 7/4/17. */ -- cgit 1.2.3-korg