diff options
author | Jim Hahn <jrh3@att.com> | 2020-11-30 11:02:31 -0500 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2020-11-30 11:04:55 -0500 |
commit | f46e4ec3af461b4036b189fd8d6a18af37acc29d (patch) | |
tree | 3d1c033cc963cc0e2216d3d0960f812c921a0d42 /models-interactions/model-actors/actor.test/src | |
parent | 1dd41890f83702d47c5a957493046433989ef36c (diff) |
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 <jrh3@att.com>
Diffstat (limited to 'models-interactions/model-actors/actor.test/src')
-rw-r--r-- | models-interactions/model-actors/actor.test/src/main/java/org/onap/policy/controlloop/actor/test/BasicOperation.java | 2 |
1 files changed, 1 insertions, 1 deletions
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(); } /** |