RemoveString implements the JSON interface.
(s string)
| 658 | |
| 659 | // RemoveString implements the JSON interface. |
| 660 | func (j *jsonEncoded) RemoveString(s string) (JSON, bool, error) { |
| 661 | decoded, err := j.shallowDecode() |
| 662 | if err != nil { |
| 663 | return nil, false, err |
| 664 | } |
| 665 | return decoded.RemoveString(s) |
| 666 | } |
| 667 | |
| 668 | func (j *jsonEncoded) RemovePath(path []string) (JSON, bool, error) { |
| 669 | decoded, err := j.shallowDecode() |
nothing calls this directly
no test coverage detected