We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03526e5 commit 22e6519Copy full SHA for 22e6519
core/src/main/python/wlsdeploy/json/json_translator.py
@@ -235,8 +235,6 @@ def _format_json_value(value):
235
builder = StringBuilder()
236
if type(value) == bool:
237
builder.append(JBoolean.toString(value))
238
- elif isinstance(value, types.StringTypes) and (value == 'true' or value == 'false'):
239
- builder.append(value)
240
elif isinstance(value, types.StringTypes):
241
builder.append('"').append(_escape_text(value.strip())).append('"')
242
else:
0 commit comments