diff options
author | anushadasari <danush10@in.ibm.com> | 2019-08-20 15:00:49 +0530 |
---|---|---|
committer | anushadasari <danush10@in.ibm.com> | 2019-08-20 15:01:04 +0530 |
commit | 6d53372256c01c3f0bf88cb95301322954e2471e (patch) | |
tree | 3a8a726e1087b16f7ff65b29124994f0c83b210d | |
parent | 8304a47a1fc59d6f6af0c957c96946e5cf099309 (diff) |
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-580
Change-Id: I3ea680af37477b564d02fcc9b58956b3958d184d
Signed-off-by: anushadasari <danush10@in.ibm.com>
-rw-r--r-- | vid-app-common/src/main/java/org/onap/vid/services/AsyncInstantiationBusinessLogicImpl.java | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/vid-app-common/src/main/java/org/onap/vid/services/AsyncInstantiationBusinessLogicImpl.java b/vid-app-common/src/main/java/org/onap/vid/services/AsyncInstantiationBusinessLogicImpl.java index 7818837f1..d7b3ac602 100644 --- a/vid-app-common/src/main/java/org/onap/vid/services/AsyncInstantiationBusinessLogicImpl.java +++ b/vid-app-common/src/main/java/org/onap/vid/services/AsyncInstantiationBusinessLogicImpl.java @@ -39,7 +39,6 @@ import org.apache.commons.lang3.StringUtils; import org.hibernate.SessionFactory; import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate; import org.onap.vid.aai.AaiClientInterface; -import org.onap.vid.aai.ExceptionWithRequestInfo; import org.onap.vid.aai.model.ResourceType; import org.onap.vid.dal.AsyncInstantiationRepository; import org.onap.vid.exceptions.DbFailureUncheckedException; |