summaryrefslogtreecommitdiffstats
path: root/modules/timeutil
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2023-04-22 20:53:00 +0200
committerGitHub <noreply@github.com>2023-04-22 14:53:00 -0400
commit8dc6eabbc02ef07c76671d53f28baf46871d5b68 (patch)
tree52e8a1a59e88fc55c76e2adb82e844caae04a970 /modules/timeutil
parent88201914767e15a51c910d295647d97973fa09bf (diff)
downloadgitea-8dc6eabbc02ef07c76671d53f28baf46871d5b68.tar.gz
gitea-8dc6eabbc02ef07c76671d53f28baf46871d5b68.zip
Update go tool dependencies, restructure lint targets (#24239)
- Update all tool dependencies to latest tag - Remove unused errcheck, it is part of golangci-lint - Include main.go in air - Enable wastedassign again now that it's [generics-compatible](https://github.com/golangci/golangci-lint/pull/3689) - Restructured lint targets to new `lint-*` namespace
Diffstat (limited to 'modules/timeutil')
-rw-r--r--modules/timeutil/since.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/timeutil/since.go b/modules/timeutil/since.go
index e6a2519d21..4aee814ecd 100644
--- a/modules/timeutil/since.go
+++ b/modules/timeutil/since.go
@@ -23,7 +23,7 @@ const (
)
func computeTimeDiffFloor(diff int64, lang translation.Locale) (int64, string) {
- diffStr := ""
+ var diffStr string
switch {
case diff <= 0:
diff = 0