RemoveString implements the JSON interface.
(s string)
| 672 | |
| 673 | // RemoveString implements the JSON interface. |
| 674 | func (j *jsonEncoded) RemoveString(s string) (JSON, bool, error) { |
| 675 | decoded, err := j.shallowDecode() |
| 676 | if err != nil { |
| 677 | return nil, false, err |
| 678 | } |
| 679 | return decoded.RemoveString(s) |
| 680 | } |
| 681 | |
| 682 | func (j *jsonEncoded) RemovePath(path []string) (JSON, bool, error) { |
| 683 | decoded, err := j.shallowDecode() |
nothing calls this directly
no test coverage detected