Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
liuxiaocs7 committed Feb 8, 2023
1 parent 16f35a6 commit 1abcba4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public Row deserialize(Map<String, Object> message) {
Row row = new Row(this.fieldSize);
for (int i = 0; i < this.fieldSize; i++) {
String fieldName = this.fieldNames[i];
Object value = message.getOrDefault(fieldName, null);
Object value = message.get(fieldName);
if (Objects.nonNull(value)) {
TypeInfo<?> typeInfo = this.typeInfos[i];
try {
Expand Down

0 comments on commit 1abcba4

Please sign in to comment.