mirror of https://github.com/tidwall/gjson.git
Removed unneeded comment
This commit is contained in:
parent
c9f07c7971
commit
12826915de
2
gjson.go
2
gjson.go
|
@ -1989,7 +1989,7 @@ func runeit(json string) rune {
|
||||||
}
|
}
|
||||||
|
|
||||||
// unescape unescapes a string
|
// unescape unescapes a string
|
||||||
func unescape(json string) string { // , error) {
|
func unescape(json string) string {
|
||||||
var str = make([]byte, 0, len(json))
|
var str = make([]byte, 0, len(json))
|
||||||
for i := 0; i < len(json); i++ {
|
for i := 0; i < len(json); i++ {
|
||||||
switch {
|
switch {
|
||||||
|
|
Loading…
Reference in New Issue