()
| 316 | } |
| 317 | |
| 318 | func (v Version) String() string { |
| 319 | if v > 15 { |
| 320 | return fmt.Sprintf("BAD_VERSION_%d", v) |
| 321 | } |
| 322 | return fmt.Sprintf("VERSION_%d", v) |
| 323 | } |
| 324 | |
| 325 | func (v Variant) String() string { |
| 326 | switch v { |
nothing calls this directly
no outgoing calls
no test coverage detected