File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
core/src/main/java/oracle/weblogic/deploy/json Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11/*
2- * Copyright (c) 2017, 2020 , Oracle Corporation and/or its affiliates.
2+ * Copyright (c) 2017, 2021 , Oracle and/or its affiliates.
33 * Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
44 */
55package oracle .weblogic .deploy .json ;
@@ -240,7 +240,7 @@ public void exitJsonNumber(JSONParser.JsonNumberContext ctx) {
240240 */
241241 @ Override
242242 public void enterJsonTrue (JSONParser .JsonTrueContext ctx ) {
243- currentScalarValue = new PyString ("True " );
243+ currentScalarValue = new PyString ("true " );
244244 currentValueType .push (ValueType .SCALAR );
245245 }
246246
@@ -257,7 +257,7 @@ public void exitJsonTrue(JSONParser.JsonTrueContext ctx) {
257257 */
258258 @ Override
259259 public void enterJsonFalse (JSONParser .JsonFalseContext ctx ) {
260- currentScalarValue = new PyString ("False " );
260+ currentScalarValue = new PyString ("false " );
261261 currentValueType .push (ValueType .SCALAR );
262262 }
263263
You can’t perform that action at this time.
0 commit comments