This commit is contained in:
James Agnew 2019-05-22 17:27:49 -04:00
parent 90da9dc013
commit b4eecdef38
1 changed files with 1 additions and 1 deletions

View File

@ -1468,7 +1468,7 @@ public class JsonParser extends BaseParser implements IJsonLikeParser {
if (childDef == null) { if (childDef == null) {
throw new ConfigurationException("Unable to encode extension, unrecognized child element type: " + value.getClass().getCanonicalName()); throw new ConfigurationException("Unable to encode extension, unrecognized child element type: " + value.getClass().getCanonicalName());
} }
encodeChildElementToStreamWriter(theResDef, theResource, theEventWriter, value, childDef, childName, true, myParent,false, theEncodeContext); encodeChildElementToStreamWriter(theResDef, theResource, theEventWriter, value, childDef, childName, false, myParent,false, theEncodeContext);
managePrimitiveExtension(value, theResDef, theResource, theEventWriter, childDef, childName, theEncodeContext); managePrimitiveExtension(value, theResDef, theResource, theEventWriter, childDef, childName, theEncodeContext);
} }