Skip to content

Commit

Permalink
[INLONG-11606][Sort] When formatting string field values, the origina…
Browse files Browse the repository at this point in the history
…l value is not modified (#11607)
  • Loading branch information
luchunliang authored Dec 17, 2024
1 parent 302f808 commit b66102c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public String serialize(String obj) {

@Override
public String deserialize(String text) {
return text.trim();
return text;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public String serialize(String obj) {

@Override
public String deserialize(String text) {
return text.trim();
return text;
}

@Override
Expand Down

0 comments on commit b66102c

Please sign in to comment.