diff options
author | Jorge Hernandez <jh1730@att.com> | 2017-09-12 20:18:45 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-09-12 20:18:45 +0000 |
commit | 05ccc1478eec584ec77de78fa072396abf9ff704 (patch) | |
tree | e46b426369936878ea759d2f713930b847d11cc0 /controlloop/common | |
parent | 19e8dcfa177d511fedb9d756f5de5de69509f76e (diff) | |
parent | e4e05491b0bee53542611592341f2a5f1732190d (diff) |
Merge "Fix nullPointerException"
Diffstat (limited to 'controlloop/common')
-rw-r--r-- | controlloop/common/guard/src/main/java/org/onap/policy/guard/PIPEngineGetHistory.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/controlloop/common/guard/src/main/java/org/onap/policy/guard/PIPEngineGetHistory.java b/controlloop/common/guard/src/main/java/org/onap/policy/guard/PIPEngineGetHistory.java index 0ec0098a1..3e93bd761 100644 --- a/controlloop/common/guard/src/main/java/org/onap/policy/guard/PIPEngineGetHistory.java +++ b/controlloop/common/guard/src/main/java/org/onap/policy/guard/PIPEngineGetHistory.java @@ -23,6 +23,7 @@ package org.onap.policy.guard; import java.math.BigInteger; import java.sql.Timestamp; import java.util.Collection; +import java.util.Collections; import java.util.Date; import java.util.HashSet; import java.util.Iterator; @@ -112,13 +113,13 @@ public class PIPEngineGetHistory extends StdConfigurableEngine{ @Override public Collection<PIPRequest> attributesRequired() { // TODO Auto-generated method stub - return null; + return Collections.emptySet(); } @Override public Collection<PIPRequest> attributesProvided() { // TODO Auto-generated method stub - return null; + return Collections.emptySet(); } @Override |