diff options
author | liamfallon <liam.fallon@ericsson.com> | 2018-09-26 16:50:18 +0100 |
---|---|---|
committer | liamfallon <liam.fallon@ericsson.com> | 2018-09-26 16:50:53 +0100 |
commit | cad13bc9dbd2eaebf91fcde1a0aa03dc179f4795 (patch) | |
tree | dee7bae6f9e6cde5d140de5d22d2e8edc3accbf2 /examples/examples-decisionmaker/src/main/resources/logic/RandomAnswerTask.js | |
parent | e69d7e19bf99a5ac575705f7a1a9375417b0990f (diff) |
Fix boolean constants in examples
When the checkstyle changes were made in the java code
the .TRUE and .FALSE values were changed to .isTrue and
.isFalse to comply with checkstyle. THis change needs to
be propogated into example scripts.
Issue-ID: POLICY-103
Change-Id: I419b5f398ef4f43b1b877d52bbe4ec638870f31d
Signed-off-by: liamfallon <liam.fallon@ericsson.com>
Diffstat (limited to 'examples/examples-decisionmaker/src/main/resources/logic/RandomAnswerTask.js')
-rw-r--r-- | examples/examples-decisionmaker/src/main/resources/logic/RandomAnswerTask.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/examples-decisionmaker/src/main/resources/logic/RandomAnswerTask.js b/examples/examples-decisionmaker/src/main/resources/logic/RandomAnswerTask.js index f4012ac6e..7a67fccc2 100644 --- a/examples/examples-decisionmaker/src/main/resources/logic/RandomAnswerTask.js +++ b/examples/examples-decisionmaker/src/main/resources/logic/RandomAnswerTask.js @@ -34,4 +34,4 @@ executor.outFields.put("decision", executor.getContextAlbum("AnswerAlbum").get(s executor.logger.info(executor.outFields); -var returnValue = executor.TRUE;
\ No newline at end of file +var returnValue = executor.isTrue; |