diff options
author | anushadasari <danush10@in.ibm.com> | 2019-08-07 17:18:14 +0530 |
---|---|---|
committer | anushadasari <danush10@in.ibm.com> | 2019-08-07 17:18:30 +0530 |
commit | ebcc0756939e3883d91c74527fb6b5be813cfcd6 (patch) | |
tree | b97b4421a95352501b56437d8097763960641fb0 | |
parent | 6f674e900985ef640c79dbb31034dc85ca447d93 (diff) |
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 <danush10@in.ibm.com>
-rw-r--r-- | vid-app-common/src/main/java/org/onap/vid/model/Subscriber.java | 2 |
1 files changed, 0 insertions, 2 deletions
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. */ |