(value *string)
| 830 | } |
| 831 | |
| 832 | func cloneStringPtr(value *string) *string { |
| 833 | if value == nil { |
| 834 | return nil |
| 835 | } |
| 836 | copyValue := strings.TrimSpace(*value) |
| 837 | return ©Value |
| 838 | } |
| 839 | |
| 840 | func cloneTimePtr(value *time.Time) *time.Time { |
| 841 | if value == nil { |
no outgoing calls
no test coverage detected