Skip to content

Commit df76c89

Browse files
committed
Adjust some comments and code
1 parent 64165fd commit df76c89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/kotlin/com/casper/sdk/clvalue/CLParsed.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,9 +295,9 @@ class CLParsed {
295295
if(clParsed.innerParsed1.itsCLType.isCLTypePrimitive()) {
296296
resultStr = getParsedPrimitive(clParsed.innerParsed1)
297297
} else {
298-
resultStr = getParsedCompound(clParsed.innerParsed2)
298+
resultStr = getParsedCompound(clParsed.innerParsed1)
299299
}
300-
return "{" + clParsed.itsValueInStr + ":" + resultStr + "}}" //}?
300+
return "{" + clParsed.itsValueInStr + ":" + resultStr + "}"
301301
} else if(clParsed.itsCLType.itsTypeStr == ConstValues.CLTYPE_MAP) {
302302
val totalElement = clParsed.innerParsed1.itsArrayValue.size
303303
if(totalElement == 0 ) {

0 commit comments

Comments
 (0)