summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthur Martella <arthur.martella.1@att.com>2019-10-14 12:04:09 -0400
committerArthur Martella <arthur.martella.1@att.com>2019-10-14 12:04:09 -0400
commit0ae7f12d73cd9eb92a8779295e414c6471fd045a (patch)
tree3e12c786443e9e8ec9f6e6bfd4dd16f9886637d6
parent396c1666b9bb7c96e236ac4b5980f4a6cc1fe6d2 (diff)
Remove unused imports causing license issues
Removed unused import with copyleft Removed extraneous semicolon Issue-ID: OPTFRA-524 Signed-off-by: Martella, Arthur <arthur.martella.1@att.com> Change-Id: I8133835c5bf2d51eed7a9ed572ca03e82bc3bb1e
-rw-r--r--valetapi/pom.xml51
-rw-r--r--valetapi/src/main/java/org/onap/fgps/api/logging/EELFLoggerDelegate.java2
2 files changed, 1 insertions, 52 deletions
diff --git a/valetapi/pom.xml b/valetapi/pom.xml
index f82ecf1..9ce50b4 100644
--- a/valetapi/pom.xml
+++ b/valetapi/pom.xml
@@ -147,22 +147,6 @@
<version>2.4.13</version>
</dependency>
<dependency>
- <groupId>au.com.dius</groupId>
- <artifactId>pact-jvm-consumer-junit_2.11</artifactId>
- <version>3.3.9</version>
- <exclusions>
- <exclusion>
- <groupId>org.codehaus.groovy</groupId>
- <artifactId>groovy-all</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>au.com.dius</groupId>
- <artifactId>pact-jvm-provider-junit_2.11</artifactId>
- <version>3.3.9</version>
- </dependency>
- <dependency>
<groupId>org.jmockit</groupId>
<artifactId>jmockit</artifactId>
<version>1.38</version>
@@ -409,41 +393,6 @@
</executions>
</plugin>
<plugin>
- <groupId>au.com.dius</groupId>
- <artifactId>pact-jvm-provider-maven_2.11</artifactId>
- <version>3.3.9</version>
- <configuration>
- <!--pactBrokerUrl,user name,password and project version required only
- for consumer -->
- <pactBrokerUrl>${BROKER_URL}</pactBrokerUrl>
- <pactBrokerUsername>${userName}</pactBrokerUsername>
- <pactBrokerPassword>${password}</pactBrokerPassword>
- <projectVersion>0.0.1</projectVersion>
- <!-- service provider required only for producer -->
- <serviceProviders>
- <serviceProvider>
- <name>ValetApi</name>
- <protocol>http</protocol>
- <host>${APP_URL}</host>
- <port>${APP_PORT}</port>
- <path>/</path>
- <pactBroker>
- <url>${BROKER_URL}</url>
- <authentication>
- <username>${userName}</username>
- <password>${password}</password>
- </authentication>
- </pactBroker>
- <!-- If you want to test specific PACT and specific port uncomment
- the consumers section and comment the pact broker in the service provider -->
- <!-- <consumers> <consumer> <name>pactconsumer</name> <pactUrl>${brokerUrl}/pacts/provider/pactdemo/consumer/pactdemo/latest</pactUrl>
- <pactUrl>${brokerUrl}/pacts/provider/pactdemo/consumer/pactconsumer2/version/0.0.1</pactUrl>
- </consumer> </consumers> -->
- </serviceProvider>
- </serviceProviders>
- </configuration>
- </plugin>
- <plugin>
<artifactId>maven-dependency-plugin</artifactId>
</plugin>
<plugin>
diff --git a/valetapi/src/main/java/org/onap/fgps/api/logging/EELFLoggerDelegate.java b/valetapi/src/main/java/org/onap/fgps/api/logging/EELFLoggerDelegate.java
index 4208334..63617fa 100644
--- a/valetapi/src/main/java/org/onap/fgps/api/logging/EELFLoggerDelegate.java
+++ b/valetapi/src/main/java/org/onap/fgps/api/logging/EELFLoggerDelegate.java
@@ -58,7 +58,7 @@ import org.onap.fgps.api.logging.aspect.EELFLoggerAdvice;
import org.onap.fgps.api.logging.format.AlarmSeverityEnum;
//import org.onap.portalsdk.core.domain.User;
import org.onap.fgps.api.utils.SystemProperties;
-import org.onap.fgps.api.utils.UserUtils;;
+import org.onap.fgps.api.utils.UserUtils;
import org.slf4j.MDC;