String is part of the Setting interface.
(sv *Values)
| 99 | |
| 100 | // String is part of the Setting interface. |
| 101 | func (v *VersionSetting) String(sv *Values) string { |
| 102 | cv := v.GetInternal(sv) |
| 103 | if cv == nil { |
| 104 | panic("unexpected nil value") |
| 105 | } |
| 106 | return cv.String() |
| 107 | } |
| 108 | |
| 109 | // DefaultString returns the default value for the setting as a string. |
| 110 | func (v *VersionSetting) DefaultString() string { |
nothing calls this directly
no test coverage detected