(path []string)
| 1696 | |
| 1697 | func (j jsonArray) RemovePath(path []string) (JSON, bool, error) { return j.doRemovePath(path) } |
| 1698 | func (j jsonObject) RemovePath(path []string) (JSON, bool, error) { return j.doRemovePath(path) } |
| 1699 | func (jsonNull) RemovePath([]string) (JSON, bool, error) { |
| 1700 | return nil, false, errCannotDeletePathInScalar |
| 1701 | } |
nothing calls this directly
no test coverage detected