(a, b int)
| 688 | } |
| 689 | |
| 690 | func max(a, b int) int { |
| 691 | if a > b { |
| 692 | return a |
| 693 | } |
| 694 | return b |
| 695 | } |
| 696 | |
| 697 | // Truncate string if it's too long. Used in logging. |
| 698 | func truncateStringIfTooLong(s string) string { |
no outgoing calls
no test coverage detected