You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/01/27 13:40:09 UTC

[camel] branch master updated: Fix XML DSL example for INCLUDE for Jackson option

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new dba202a  Fix XML DSL example for INCLUDE for Jackson option
     new 36d3997  Merge pull request #3519 from wuersch/patch-1
dba202a is described below

commit dba202aa7adeac32fcf4bac3696a649a15166e5f
Author: Michael Würsch <wu...@users.noreply.github.com>
AuthorDate: Mon Jan 27 13:40:48 2020 +0100

    Fix XML DSL example for INCLUDE for Jackson option
    
    The include option should have the value "NON_NULL".
---
 docs/user-manual/modules/ROOT/pages/json.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/user-manual/modules/ROOT/pages/json.adoc b/docs/user-manual/modules/ROOT/pages/json.adoc
index 2a2e8bb..1e9de04 100644
--- a/docs/user-manual/modules/ROOT/pages/json.adoc
+++ b/docs/user-manual/modules/ROOT/pages/json.adoc
@@ -284,7 +284,7 @@ Or from XML DSL you configure this as
 [source,java]
 ------------------------------------------------------------
     <dataFormats>
-      <json id="json" library="Jackson" include="NOT_NULL"/>
+      <json id="json" library="Jackson" include="NON_NULL"/>
     </dataFormats>
 ------------------------------------------------------------