From f46e4ec3af461b4036b189fd8d6a18af37acc29d Mon Sep 17 00:00:00 2001 From: Jim Hahn Date: Mon, 30 Nov 2020 11:02:31 -0500 Subject: Remove targetEntity from makeOutcome The Actor Params class had two flavors of makeOutcome, the second of which took a "targetEntity" parameter. As the Params no longer deal directly with the targetEntity, the second flavor was removed. Issue-ID: POLICY-2804 Change-Id: Ic736dd1c809ce54f6bb7cd37d03bc84cf4a1410c Signed-off-by: Jim Hahn --- .../java/org/onap/policy/controlloop/actor/test/BasicOperation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'models-interactions/model-actors/actor.test') diff --git a/models-interactions/model-actors/actor.test/src/main/java/org/onap/policy/controlloop/actor/test/BasicOperation.java b/models-interactions/model-actors/actor.test/src/main/java/org/onap/policy/controlloop/actor/test/BasicOperation.java index 4bfbe40f2..539202c4a 100644 --- a/models-interactions/model-actors/actor.test/src/main/java/org/onap/policy/controlloop/actor/test/BasicOperation.java +++ b/models-interactions/model-actors/actor.test/src/main/java/org/onap/policy/controlloop/actor/test/BasicOperation.java @@ -102,7 +102,7 @@ public class BasicOperation { makeContext(); // get a fresh outcome - outcome = params.makeOutcome(TARGET_ENTITY); + outcome = params.makeOutcome(); } /** -- cgit 1.2.3-korg