From b3e36364b94fe25497a288eee12fa3c96f4101a3 Mon Sep 17 00:00:00 2001 From: Jes Cok Date: Wed, 26 Feb 2025 16:31:46 +0000 Subject: [PATCH] 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 --- src/flag/flag.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- 2.50.0