(ctx context.Context, sv *Values, encoded string)
| 116 | } |
| 117 | |
| 118 | func (d *DurationSetting) decodeAndSet(ctx context.Context, sv *Values, encoded string) error { |
| 119 | v, err := d.DecodeValue(encoded) |
| 120 | if err != nil { |
| 121 | return err |
| 122 | } |
| 123 | return d.set(ctx, sv, v) |
| 124 | } |
| 125 | |
| 126 | func (d *DurationSetting) decodeAndSetDefaultOverride( |
| 127 | ctx context.Context, sv *Values, encoded string, |
nothing calls this directly
no test coverage detected