Encoded is part of the NonMaskedSetting interface.
(sv *Values)
| 113 | |
| 114 | // Encoded is part of the NonMaskedSetting interface. |
| 115 | func (v *VersionSetting) Encoded(sv *Values) string { |
| 116 | cv := v.GetInternal(sv) |
| 117 | if cv == nil { |
| 118 | panic("unexpected nil value") |
| 119 | } |
| 120 | return string(cv.Encode()) |
| 121 | } |
| 122 | |
| 123 | // EncodedDefault is part of the NonMaskedSetting interface. |
| 124 | func (v *VersionSetting) EncodedDefault() string { |
nothing calls this directly
no test coverage detected