Correctly handle parsing of JSON strings containing single quotes #21147

This commit is contained in:
Mike Bryant 2016-08-10 12:05:26 +01:00 committed by Johan Andrén
parent a5df0d74e9
commit 03923ca278
2 changed files with 7 additions and 1 deletions

View file

@ -17,7 +17,7 @@ private[akka] object JsonObjectParser {
final val SquareBraceEnd = ']'.toByte
final val CurlyBraceStart = '{'.toByte
final val CurlyBraceEnd = '}'.toByte
final val DoubleQuote = '\''.toByte
final val DoubleQuote = '"'.toByte
final val Backslash = '\\'.toByte
final val Comma = ','.toByte