You've already forked json-iterator
mirror of
https://github.com/json-iterator/go.git
synced 2025-06-18 22:57:33 +02:00
gofmt
This commit is contained in:
@ -5,7 +5,7 @@ import (
|
||||
"strconv"
|
||||
)
|
||||
|
||||
type stringLazyAny struct{
|
||||
type stringLazyAny struct {
|
||||
baseAny
|
||||
buf []byte
|
||||
iter *Iterator
|
||||
@ -136,9 +136,9 @@ func (any *stringLazyAny) GetInterface() interface{} {
|
||||
return any.cache
|
||||
}
|
||||
|
||||
type stringAny struct{
|
||||
type stringAny struct {
|
||||
baseAny
|
||||
err error
|
||||
err error
|
||||
val string
|
||||
}
|
||||
|
||||
@ -146,7 +146,6 @@ func (any *stringAny) Parse() *Iterator {
|
||||
return nil
|
||||
}
|
||||
|
||||
|
||||
func (any *stringAny) ValueType() ValueType {
|
||||
return String
|
||||
}
|
||||
@ -228,4 +227,4 @@ func (any *stringAny) WriteTo(stream *Stream) {
|
||||
|
||||
func (any *stringAny) GetInterface() interface{} {
|
||||
return any.val
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user