(path []string)
| 708 | } |
| 709 | |
| 710 | func (j *jsonEncoded) RemovePath(path []string) (JSON, bool, error) { |
| 711 | decoded, err := j.shallowDecode() |
| 712 | if err != nil { |
| 713 | return nil, false, err |
| 714 | } |
| 715 | return decoded.RemovePath(path) |
| 716 | } |
| 717 | |
| 718 | func (j *jsonEncoded) doRemovePath(path []string) (JSON, bool, error) { |
| 719 | decoded, err := j.shallowDecode() |
nothing calls this directly
no test coverage detected