(path []string)
| 666 | } |
| 667 | |
| 668 | func (j *jsonEncoded) RemovePath(path []string) (JSON, bool, error) { |
| 669 | decoded, err := j.shallowDecode() |
| 670 | if err != nil { |
| 671 | return nil, false, err |
| 672 | } |
| 673 | return decoded.RemovePath(path) |
| 674 | } |
| 675 | |
| 676 | func (j *jsonEncoded) doRemovePath(path []string) (JSON, bool, error) { |
| 677 | decoded, err := j.shallowDecode() |
nothing calls this directly
no test coverage detected