Skip to content

Commit

Permalink
Fix typo in comment (#6392)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdpgrailsdev committed May 5, 2023
1 parent 717db41 commit 8a9a21c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1522,7 +1522,7 @@ private String removeUnsupportedUnicode(final String value) {
/*
* Currently, this replaces both the literal unicode null character (\0 or \u0000) and a string
* representation of the unicode value ("\u0000"). This is necessary because the literal unicode
* value gets converted into a 6 character value during JSON seriealization.
* value gets converted into a 6 character value during JSON serialization.
*/
return value != null ? value.replaceAll("\\u0000|\\\\u0000", "") : null;
}
Expand Down

0 comments on commit 8a9a21c

Please sign in to comment.