RemoveString implements the JSON interface.
(s string)
| 700 | |
| 701 | // RemoveString implements the JSON interface. |
| 702 | func (j *jsonEncoded) RemoveString(s string) (JSON, bool, error) { |
| 703 | decoded, err := j.shallowDecode() |
| 704 | if err != nil { |
| 705 | return nil, false, err |
| 706 | } |
| 707 | return decoded.RemoveString(s) |
| 708 | } |
| 709 | |
| 710 | func (j *jsonEncoded) RemovePath(path []string) (JSON, bool, error) { |
| 711 | decoded, err := j.shallowDecode() |
nothing calls this directly
no test coverage detected