From: Jes Cok Date: Wed, 26 Feb 2025 16:31:46 +0000 (+0000) Subject: flag: replace interface{} -> any for textValue.Get method X-Git-Tag: go1.25rc1~875 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b3e36364b94fe25497a288eee12fa3c96f4101a3;p=gostls13.git flag: replace interface{} -> any for textValue.Get method Make it literally match the Getter interface. Change-Id: I73f03780ba1d3fd2230e0e5e2343d40530d9e6d8 GitHub-Last-Rev: 398b90b2fb04fdd401a1d719bf3ce19152a4cf6a GitHub-Pull-Request: golang/go#71975 Reviewed-on: https://go-review.googlesource.com/c/go/+/652795 Reviewed-by: Ian Lance Taylor Auto-Submit: Ian Lance Taylor Reviewed-by: Dmitri Shuralyov LUCI-TryBot-Result: Go LUCI --- diff --git a/src/flag/flag.go b/src/flag/flag.go index bda1e1a9b8..71902f7f59 100644 --- a/src/flag/flag.go +++ b/src/flag/flag.go @@ -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 }