Fix eclipse/sonar warnings in models 95/113495/1
authorJim Hahn <jrh3@att.com>
Fri, 2 Oct 2020 16:56:47 +0000 (12:56 -0400)
committerJim Hahn <jrh3@att.com>
Fri, 2 Oct 2020 16:59:47 +0000 (12:59 -0400)
Addressed the following eclipse/sonar warnings:
- unused imports
- unchanged type
- unreachable "catch" block
- reinterrupt

Issue-ID: POLICY-2714
Change-Id: I2fe6011ec74b7fab8889050e5c83647ab034ea25
Signed-off-by: Jim Hahn <jrh3@att.com>
models-base/src/main/java/org/onap/policy/models/base/PfConceptContainer.java
models-interactions/model-actors/actor.so/src/test/java/org/onap/policy/controlloop/actor/so/ModifyNssiTest.java
models-interactions/model-simulators/src/main/java/org/onap/policy/simulators/CdsSimulator.java
models-sim/policy-models-simulators/src/test/java/org/onap/policy/models/simulators/CdsServerParametersTest.java

index 14d6585..77ef939 100644 (file)
@@ -35,7 +35,6 @@ import java.util.TreeSet;
 import java.util.function.Function;
 import javax.persistence.CascadeType;
 import javax.persistence.EmbeddedId;
-import javax.persistence.Entity;
 import javax.persistence.JoinColumn;
 import javax.persistence.JoinTable;
 import javax.persistence.ManyToMany;
index 21d7229..ff5f87c 100644 (file)
@@ -3,6 +3,7 @@
  * ONAP
  * ================================================================================
  * Copyright (C) 2020 Wipro Limited.
+ * Modifications Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -104,6 +105,7 @@ public class ModifyNssiTest extends BasicSoOperation {
     }
 
     @Override
+    @SuppressWarnings("unchecked")
     protected Map<String, Object> makePayload() {
         String payloadString = ResourceUtils
                 .getResourceAsString("src/test/resources/ModifyNSSI.json");
index f1785c8..3418780 100644 (file)
@@ -91,9 +91,8 @@ public class CdsSimulator {
                             responseObserver.onNext(builder.build());
                         } catch (InvalidProtocolBufferException e) {
                             throw new SimulatorRuntimeException("Cannot convert ExecutionServiceOutput output", e);
-                        } catch (IOException e) {
-                            throw new SimulatorRuntimeException("Cannot read ExecutionServiceOutput from file", e);
                         } catch (InterruptedException e) {
+                            Thread.currentThread().interrupt();
                             throw new SimulatorRuntimeException("Execution Interrupted", e);
                         }
                     }
index 03aae8e..7b0ab6b 100644 (file)
@@ -1,6 +1,7 @@
 /*-
  * ============LICENSE_START=======================================================
  * Copyright (C) 2020 Bell Canada.
+ * Modifications Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -20,7 +21,6 @@ package org.onap.policy.models.simulators;
 
 import static org.junit.Assert.assertFalse;
 import static org.junit.Assert.assertNotNull;
-import static org.junit.Assert.assertNull;
 import static org.junit.Assert.assertTrue;
 
 import java.io.File;