Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dataroaring committed Jun 23, 2024
1 parent ffdda67 commit 8c702cb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ public static FunctionType read(DataInput input) throws IOException {
if (Env.getCurrentEnvJournalVersion() < FeMetaVersion.VERSION_136) {
return fromCode(input.readInt());
} else {
GsonUtils.GSON.fromJson(Text.readString(input), FunctionType.class);
return GsonUtils.GSON.fromJson(Text.readString(input), FunctionType.class);
}
}
}
Expand Down

0 comments on commit 8c702cb

Please sign in to comment.