Fix build failure and remove unused imports 62/121662/1
authorwaynedunican <wayne.dunican@est.tech>
Wed, 2 Jun 2021 10:57:55 +0000 (11:57 +0100)
committerWayneDunican <wayne.dunican@est.tech>
Wed, 2 Jun 2021 10:58:49 +0000 (11:58 +0100)
Issue-ID: POLICY-3339
Change-Id: I0c9bd25e63b24ba3ac7e38a77e963fcdbaa4d26a
Signed-off-by: waynedunican <wayne.dunican@est.tech>
main/src/main/java/org/onap/policy/pap/main/comm/msgdata/UpdateReq.java
main/src/main/java/org/onap/policy/pap/main/rest/ProviderBase.java
main/src/test/java/org/onap/policy/pap/main/comm/msgdata/UpdateReqTest.java

index d0d1f5f..4aeed4f 100644 (file)
@@ -23,7 +23,6 @@ package org.onap.policy.pap.main.comm.msgdata;
 
 import java.util.Collection;
 import java.util.Collections;
-import java.util.HashMap;
 import java.util.HashSet;
 import java.util.LinkedList;
 import java.util.List;
index a21c2a1..6fa0ef3 100644 (file)
@@ -23,7 +23,6 @@
 package org.onap.policy.pap.main.rest;
 
 import java.util.Collection;
-import java.util.stream.Collectors;
 import javax.ws.rs.core.Response.Status;
 import org.onap.policy.common.utils.services.Registry;
 import org.onap.policy.models.base.PfModelException;
index 306418c..c318a03 100644 (file)
@@ -24,7 +24,6 @@ package org.onap.policy.pap.main.comm.msgdata;
 import static org.assertj.core.api.Assertions.assertThat;
 import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertFalse;
-import static org.junit.Assert.assertNotSame;
 import static org.junit.Assert.assertNull;
 import static org.junit.Assert.assertSame;
 import static org.junit.Assert.assertTrue;
@@ -193,7 +192,7 @@ public class UpdateReqTest extends CommonRequestBase {
         // same content - should succeed, but leave message unchanged
         PdpUpdate msg2 = new PdpUpdate(update);
         assertTrue(data.reconfigure(msg2));
-        assertNotSame(update, data.getMessage());
+        assertSame(update, data.getMessage());
 
         // different content - should succeed and install NEW message
         msg2.setPdpGroup(DIFFERENT);