(source *string)
| 3049 | } |
| 3050 | |
| 3051 | func trimStringPtr(source *string) *string { |
| 3052 | if source == nil { |
| 3053 | return nil |
| 3054 | } |
| 3055 | trimmed := strings.TrimSpace(*source) |
| 3056 | return &trimmed |
| 3057 | } |
| 3058 | |
| 3059 | func normalizePriorityPtr(source *taskpkg.Priority) *taskpkg.Priority { |
| 3060 | if source == nil { |
no outgoing calls
no test coverage detected