Update o with the contents of newO excluding the lock
(newO *Object)
| 38 | |
| 39 | // Update o with the contents of newO excluding the lock |
| 40 | func (o *Object) update(newO *Object) { |
| 41 | o.Object = newO.Object |
| 42 | o.fs = newO.fs |
| 43 | o.co = newO.co |
| 44 | } |
| 45 | |
| 46 | // UnWrapUpstream returns the upstream Object that this Object is wrapping |
| 47 | func (o *Object) UnWrapUpstream() *upstream.Object { |
no outgoing calls
no test coverage detected