(s *string)
| 17 | ) |
| 18 | |
| 19 | func derefString(s *string) string { |
| 20 | if s != nil { |
| 21 | return *s |
| 22 | } |
| 23 | |
| 24 | return "" |
| 25 | } |
| 26 | |
| 27 | func errorToString(err error) string { |
| 28 | if err == nil { |
no outgoing calls
no test coverage detected
searching dependent graphs…