Prevent trying to import "fmt"
(format string, a ...interface{})
| 509 | |
| 510 | // Prevent trying to import "fmt" |
| 511 | func reportError(format string, a ...interface{}) error { |
| 512 | return fmt.Errorf(format, a...) |
| 513 | } |
| 514 | |
| 515 | // A wrapper for strict JSON decoding |
| 516 | func newStrictDecoder(data []byte) *json.Decoder { |
no outgoing calls
no test coverage detected