From 2e087ec7080b643d0db2df026fe82dc0de9a63b7 Mon Sep 17 00:00:00 2001 From: William Leemans Date: Tue, 4 Sep 2018 09:45:13 +0200 Subject: [PATCH] wrong method (#771) --- configuration/rules-dsl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration/rules-dsl.md b/configuration/rules-dsl.md index c9fa11c325..878fee90b3 100644 --- a/configuration/rules-dsl.md +++ b/configuration/rules-dsl.md @@ -751,7 +751,7 @@ Example: ```java try { - var temperature = transform("JSONPATH", "$.temperature", jsonstring) + var temperature = transformRaw("JSONPATH", "$.temperature", jsonstring) } catch(TransformationException e) { logError("Error", "Some bad stuff happened in my rule: " + e.getMessage)