flag: replace interface{} -> any for textValue.Get method

Make it literally match the Getter interface.
This commit is contained in:
Jes Cok 2025-02-26 23:48:31 +08:00
parent 011da163f4
commit 398b90b2fb
1 changed files with 1 additions and 1 deletions

View File

@ -318,7 +318,7 @@ func (v textValue) Set(s string) error {
return v.p.UnmarshalText([]byte(s))
}
func (v textValue) Get() interface{} {
func (v textValue) Get() any {
return v.p
}