From 54e9ee37a7a301dbe74d46fd3c87712e6120e9bf Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Thu, 20 Jan 2022 18:46:10 +0100 Subject: format with gofumpt (#18184) * gofumpt -w -l . * gofumpt -w -l -extra . * Add linter * manual fix * change make fmt --- modules/timeutil/executable.go | 6 ++++-- modules/timeutil/language.go | 12 +++++------- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'modules/timeutil') diff --git a/modules/timeutil/executable.go b/modules/timeutil/executable.go index b0a3280753..1875b63349 100644 --- a/modules/timeutil/executable.go +++ b/modules/timeutil/executable.go @@ -13,8 +13,10 @@ import ( "code.gitea.io/gitea/modules/log" ) -var executablModTime = time.Now() -var executablModTimeOnce sync.Once +var ( + executablModTime = time.Now() + executablModTimeOnce sync.Once +) // GetExecutableModTime get executable file modified time of current process. func GetExecutableModTime() time.Time { diff --git a/modules/timeutil/language.go b/modules/timeutil/language.go index 121b50f277..d0380cac3d 100644 --- a/modules/timeutil/language.go +++ b/modules/timeutil/language.go @@ -10,13 +10,11 @@ import ( "code.gitea.io/gitea/modules/setting" ) -var ( - langTimeFormats = map[string]string{ - "zh-CN": "2006年01月02日 15时04分05秒", - "en-US": time.RFC1123, - "lv-LV": "02.01.2006. 15:04:05", - } -) +var langTimeFormats = map[string]string{ + "zh-CN": "2006年01月02日 15时04分05秒", + "en-US": time.RFC1123, + "lv-LV": "02.01.2006. 15:04:05", +} // GetLangTimeFormat represents the default time format for the language func GetLangTimeFormat(lang string) string { -- cgit v1.2.3