Skip to content

Commit

Permalink
Remove h from ESCAPED_CHARS in JsonMapObjectReaderWriter (#1872)
Browse files Browse the repository at this point in the history
* Remove h from ESCAPED_CHARS in JsonMapObjectReaderWriter

Signed-off-by: Craig Perkins <cwperx@amazon.com>

* Change to n

Signed-off-by: Craig Perkins <cwperx@amazon.com>

---------

Signed-off-by: Craig Perkins <cwperx@amazon.com>
(cherry picked from commit 7dcafef)
  • Loading branch information
cwperks authored and reta committed May 26, 2024
1 parent ce3c142 commit 7193a23
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class JsonMapObjectReaderWriter {
chars.add('/');
chars.add('b');
chars.add('f');
chars.add('h');
chars.add('n');
chars.add('r');
chars.add('t');
ESCAPED_CHARS = Collections.unmodifiableSet(chars);
Expand Down

0 comments on commit 7193a23

Please sign in to comment.