(dag *graph.DAG, objOld, objNew client.Object, opts ...GraphOption)
| 105 | } |
| 106 | |
| 107 | func (r *realGraphClient) Update(dag *graph.DAG, objOld, objNew client.Object, opts ...GraphOption) { |
| 108 | r.doWrite(dag, objOld, objNew, ActionUpdatePtr(), opts...) |
| 109 | } |
| 110 | |
| 111 | func (r *realGraphClient) Patch(dag *graph.DAG, objOld, objNew client.Object, opts ...GraphOption) { |
| 112 | r.doWrite(dag, objOld, objNew, ActionPatchPtr(), opts...) |
nothing calls this directly
no test coverage detected