(dag *graph.DAG, objOld, objNew client.Object, opts ...GraphOption)
| 109 | } |
| 110 | |
| 111 | func (r *realGraphClient) Patch(dag *graph.DAG, objOld, objNew client.Object, opts ...GraphOption) { |
| 112 | r.doWrite(dag, objOld, objNew, ActionPatchPtr(), opts...) |
| 113 | } |
| 114 | |
| 115 | func (r *realGraphClient) Delete(dag *graph.DAG, obj client.Object, opts ...GraphOption) { |
| 116 | r.doWrite(dag, nil, obj, ActionDeletePtr(), opts...) |
nothing calls this directly
no test coverage detected