(path []string)
| 2795 | |
| 2796 | func (j jsonArray) RemovePath(path []string) (JSON, bool, error) { return j.doRemovePath(path) } |
| 2797 | func (j jsonObject) RemovePath(path []string) (JSON, bool, error) { return j.doRemovePath(path) } |
| 2798 | func (jsonNull) RemovePath([]string) (JSON, bool, error) { |
| 2799 | return nil, false, errCannotDeletePathInScalar |
| 2800 | } |
nothing calls this directly
no test coverage detected