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 1
1
/*
2
- * Copyright (c) 2017, 2020 , Oracle Corporation and/or its affiliates.
2
+ * Copyright (c) 2017, 2021 , Oracle and/or its affiliates.
3
3
* Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
4
4
*/
5
5
package oracle .weblogic .deploy .json ;
@@ -240,7 +240,7 @@ public void exitJsonNumber(JSONParser.JsonNumberContext ctx) {
240
240
*/
241
241
@ Override
242
242
public void enterJsonTrue (JSONParser .JsonTrueContext ctx ) {
243
- currentScalarValue = new PyString ("True " );
243
+ currentScalarValue = new PyString ("true " );
244
244
currentValueType .push (ValueType .SCALAR );
245
245
}
246
246
@@ -257,7 +257,7 @@ public void exitJsonTrue(JSONParser.JsonTrueContext ctx) {
257
257
*/
258
258
@ Override
259
259
public void enterJsonFalse (JSONParser .JsonFalseContext ctx ) {
260
- currentScalarValue = new PyString ("False " );
260
+ currentScalarValue = new PyString ("false " );
261
261
currentValueType .push (ValueType .SCALAR );
262
262
}
263
263
You can’t perform that action at this time.
0 commit comments