(value *network.Surface)
| 822 | } |
| 823 | |
| 824 | func cloneSurfacePtr(value *network.Surface) *string { |
| 825 | if value == nil { |
| 826 | return nil |
| 827 | } |
| 828 | copyValue := strings.TrimSpace(string(*value)) |
| 829 | return ©Value |
| 830 | } |
| 831 | |
| 832 | func cloneStringPtr(value *string) *string { |
| 833 | if value == nil { |
no outgoing calls
no test coverage detected