reta commented on code in PR #1872:
URL: https://github.com/apache/cxf/pull/1872#discussion_r1600825436


##########
rt/rs/extensions/json-basic/src/main/java/org/apache/cxf/jaxrs/json/basic/JsonMapObjectReaderWriter.java:
##########
@@ -49,7 +49,6 @@ public class JsonMapObjectReaderWriter {
         chars.add('/');
         chars.add('b');
         chars.add('f');

Review Comment:
   ```
   chars.add('n');
   ```
   
   I believe it was a typo 
(https://datatracker.ietf.org/doc/html/rfc8259#section-7)L
   
   ```
   string = quotation-mark *char quotation-mark
   
         char = unescaped /
             escape (
                 %x22 /          ; "    quotation mark  U+0022
                 %x5C /          ; \    reverse solidus U+005C
                 %x2F /          ; /    solidus         U+002F
                 %x62 /          ; b    backspace       U+0008
                 %x66 /          ; f    form feed       U+000C
                 %x6E /          ; n    line feed       U+000A
                 %x72 /          ; r    carriage return U+000D
                 %x74 /          ; t    tab             U+0009
                 %x75 4HEXDIG )  ; uXXXX                U+XXXX
   
         escape = %x5C              ; \
   
         quotation-mark = %x22      ; "
   
         unescaped = %x20-21 / %x23-5B / %x5D-10FFFF
   ```



##########
rt/rs/extensions/json-basic/src/main/java/org/apache/cxf/jaxrs/json/basic/JsonMapObjectReaderWriter.java:
##########
@@ -49,7 +49,6 @@ public class JsonMapObjectReaderWriter {
         chars.add('/');
         chars.add('b');
         chars.add('f');

Review Comment:
   ```
   chars.add('n');
   ```
   
   I believe it was a typo 
(https://datatracker.ietf.org/doc/html/rfc8259#section-7)L
   
   ```
   string = quotation-mark *char quotation-mark
   
         char = unescaped /
             escape (
                 %x22 /          ; "    quotation mark  U+0022
                 %x5C /          ; \    reverse solidus U+005C
                 %x2F /          ; /    solidus         U+002F
                 %x62 /          ; b    backspace       U+0008
                 %x66 /          ; f    form feed       U+000C
                 %x6E /          ; n    line feed       U+000A
                 %x72 /          ; r    carriage return U+000D
                 %x74 /          ; t    tab             U+0009
                 %x75 4HEXDIG )  ; uXXXX                U+XXXX
   
         escape = %x5C              ; \
   
         quotation-mark = %x22      ; "
   
         unescaped = %x20-21 / %x23-5B / %x5D-10FFFF
   ```
   
   Thanks a lot @cwperks !



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@cxf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to