From 88f835192d1a554d233b0ec4daa33276b7eb2910 Mon Sep 17 00:00:00 2001 From: silverwind Date: Tue, 4 Jul 2023 20:36:08 +0200 Subject: Replace `interface{}` with `any` (#25686) Result of running `perl -p -i -e 's#interface\{\}#any#g' **/*` and `make fmt`. Basically the same [as golang did](https://github.com/golang/go/commit/2580d0e08d5e9f979b943758d3c49877fb2324cb). --- modules/translation/i18n/format.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/translation/i18n/format.go') diff --git a/modules/translation/i18n/format.go b/modules/translation/i18n/format.go index 637209ad80..e5e221831f 100644 --- a/modules/translation/i18n/format.go +++ b/modules/translation/i18n/format.go @@ -9,12 +9,12 @@ import ( ) // Format formats provided arguments for a given translated message -func Format(format string, args ...interface{}) (msg string, err error) { +func Format(format string, args ...any) (msg string, err error) { if len(args) == 0 { return format, nil } - fmtArgs := make([]interface{}, 0, len(args)) + fmtArgs := make([]any, 0, len(args)) for _, arg := range args { val := reflect.ValueOf(arg) if val.Kind() == reflect.Slice { -- cgit v1.2.3