(source *string)
| 1525 | } |
| 1526 | |
| 1527 | func trimStringPtr(source *string) *string { |
| 1528 | if source == nil { |
| 1529 | return nil |
| 1530 | } |
| 1531 | value := strings.TrimSpace(*source) |
| 1532 | return &value |
| 1533 | } |
| 1534 | |
| 1535 | func normalizePriorityPtr(source *taskpkg.Priority) *taskpkg.Priority { |
| 1536 | if source == nil { |
no outgoing calls
no test coverage detected