From 87c95be02a8a4d77e165dede90777e811b59dcae Mon Sep 17 00:00:00 2001 From: Ravindra Bakkamanthala Date: Tue, 23 May 2017 14:56:12 -0400 Subject: Commit includes ControlLoopPolicy API and bugfixes Change-Id: I3e18bb8b4c31a0d908bb0cff4c85e2a3fb450a63 Signed-off-by: Ravindra Bakkamanthala --- .../openecomp/policy/pdp/test/conformance/ConformancePIPEngine.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ECOMP-PDP/src/test/java/org/openecomp/policy/pdp/test/conformance/ConformancePIPEngine.java') diff --git a/ECOMP-PDP/src/test/java/org/openecomp/policy/pdp/test/conformance/ConformancePIPEngine.java b/ECOMP-PDP/src/test/java/org/openecomp/policy/pdp/test/conformance/ConformancePIPEngine.java index 84012c0d3..64085411f 100644 --- a/ECOMP-PDP/src/test/java/org/openecomp/policy/pdp/test/conformance/ConformancePIPEngine.java +++ b/ECOMP-PDP/src/test/java/org/openecomp/policy/pdp/test/conformance/ConformancePIPEngine.java @@ -70,8 +70,8 @@ public class ConformancePIPEngine implements ConfigurableEngine { private String name; private String description; - private Map cache = new HashMap(); - private List listAttributes = new ArrayList(); + private Map cache = new HashMap<>(); + private List listAttributes = new ArrayList<>(); private DataTypeFactory dataTypeFactory; public ConformancePIPEngine() { @@ -182,7 +182,7 @@ public class ConformancePIPEngine implements ConfigurableEngine { /* * Iterate through the values and only return the ones that match the requested data type */ - List> matchingValues = new ArrayList>(); + List> matchingValues = new ArrayList<>(); Iterator> iterAttributeValues = attributeMatch.getValues().iterator(); while (iterAttributeValues.hasNext()) { AttributeValue attributeValue = iterAttributeValues.next(); -- cgit 1.2.3-korg