Skip to content

Commit

Permalink
fix map element_at with decimal value
Browse files Browse the repository at this point in the history
  • Loading branch information
amorynan committed Nov 16, 2023
1 parent 4068794 commit 66557ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2525,7 +2525,7 @@ protected Type[] getActualArgTypes(Type[] originType) {
}

private MapType getActualMapType(MapType originMapType) {
return new MapType(getActualType(originMapType.getKeyType()), getActualType(originMapType.getValueType()));
return new MapType(originMapType.getKeyType(), originMapType.getValueType());
}

private ArrayType getActualArrayType(ArrayType originArrayType) {
Expand Down

0 comments on commit 66557ca

Please sign in to comment.