(owner *Ownership)
| 4090 | } |
| 4091 | |
| 4092 | func cloneOwnership(owner *Ownership) *Ownership { |
| 4093 | if owner == nil { |
| 4094 | return nil |
| 4095 | } |
| 4096 | cloned := *owner |
| 4097 | return &cloned |
| 4098 | } |
| 4099 | |
| 4100 | func cloneActorIdentity(actor *ActorIdentity) *ActorIdentity { |
| 4101 | if actor == nil { |
no outgoing calls