(path []string)
| 1773 | |
| 1774 | func (j jsonArray) RemovePath(path []string) (JSON, bool, error) { return j.doRemovePath(path) } |
| 1775 | func (j jsonObject) RemovePath(path []string) (JSON, bool, error) { return j.doRemovePath(path) } |
| 1776 | func (jsonNull) RemovePath([]string) (JSON, bool, error) { |
| 1777 | return nil, false, errCannotDeletePathInScalar |
| 1778 | } |
nothing calls this directly
no test coverage detected