(path []string)
| 680 | } |
| 681 | |
| 682 | func (j *jsonEncoded) RemovePath(path []string) (JSON, bool, error) { |
| 683 | decoded, err := j.shallowDecode() |
| 684 | if err != nil { |
| 685 | return nil, false, err |
| 686 | } |
| 687 | return decoded.RemovePath(path) |
| 688 | } |
| 689 | |
| 690 | func (j *jsonEncoded) doRemovePath(path []string) (JSON, bool, error) { |
| 691 | decoded, err := j.shallowDecode() |
nothing calls this directly
no test coverage detected