diff options
author | Sandeep J <sandeejh@in.ibm.com> | 2018-09-07 00:26:31 +0530 |
---|---|---|
committer | Byung-Woo Jun <byung-woo.jun@ericsson.com> | 2018-09-10 02:20:10 +0000 |
commit | 2043daea4f4245c3ec0ae0b5aa32f2d4e56931f0 (patch) | |
tree | 98e81d69f34d5d869c35d3038aadca58dd098f6c | |
parent | 7ecb73575d91b6d42d0dbdc6b26af73e8c0f26a9 (diff) |
fixed sonar issue in MSOVfcApplication.java
fixed sonar issue as detailed in SO-990
Issue-ID: SO-990
Change-Id: Ie27a1040d64b53b699a14cae95e5641a70c18ec0
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
-rw-r--r-- | adapters/mso-vfc-adapter/src/main/java/org/onap/so/adapters/vfc/MSOVfcApplication.java | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/adapters/mso-vfc-adapter/src/main/java/org/onap/so/adapters/vfc/MSOVfcApplication.java b/adapters/mso-vfc-adapter/src/main/java/org/onap/so/adapters/vfc/MSOVfcApplication.java index 5bb83a7c1b..6ff6ec9379 100644 --- a/adapters/mso-vfc-adapter/src/main/java/org/onap/so/adapters/vfc/MSOVfcApplication.java +++ b/adapters/mso-vfc-adapter/src/main/java/org/onap/so/adapters/vfc/MSOVfcApplication.java @@ -4,6 +4,8 @@ * ================================================================================ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. * ================================================================================ + * Modifications Copyright (C) 2018 IBM. + * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at @@ -18,14 +20,11 @@ * ============LICENSE_END========================================================= */ -package org.onap.so.adapters.vfc; +package org.onap.so.adapters.vfc; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.boot.autoconfigure.domain.EntityScan; -import org.springframework.context.annotation.ComponentScan; -import org.springframework.data.jpa.repository.config.EnableJpaRepositories; |