aboutsummaryrefslogtreecommitdiff
path: root/src/encoding
diff options
context:
space:
mode:
Diffstat (limited to 'src/encoding')
-rw-r--r--src/encoding/json/decode.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/encoding/json/decode.go b/src/encoding/json/decode.go
index 70885a517e..fc29296c0f 100644
--- a/src/encoding/json/decode.go
+++ b/src/encoding/json/decode.go
@@ -1214,10 +1214,6 @@ func unquoteBytes(s []byte) (t []byte, ok bool) {
if c == '\\' || c == '"' || c < ' ' {
break
}
- if c < utf8.RuneSelf {
- r++
- continue
- }
rr, size := utf8.DecodeRune(s[r:])
if rr == utf8.RuneError && size == 1 {
break