multi: remove legacy // +build tag Lines

With a upgrade to a never version of newer golang.org/x/tools/govet,
a lint check to check for legacy buildtag lines starting with
`// +build` has been added, as they're no longer needed.

In order for the `make lint` check to pass with the newer version, we
remove such buildtag lines.
This commit is contained in:
Viktor Torstensson 2025-11-25 01:38:22 +01:00
parent 1430c6bc74
commit 4a9ac9ed3c
No known key found for this signature in database
GPG key ID: 961CC8259AE675D4
8 changed files with 0 additions and 8 deletions

1
app.go
View file

@ -1,5 +1,4 @@
//go:build !litd_no_ui
// +build !litd_no_ui
package terminal

View file

@ -1,5 +1,4 @@
//go:build litd_no_ui
// +build litd_no_ui
package terminal

View file

@ -1,5 +1,4 @@
//go:build deps
// +build deps
package terminal

View file

@ -1,5 +1,4 @@
//go:build !itest
// +build !itest
package itest

View file

@ -1,5 +1,4 @@
//go:build itest
// +build itest
package itest

View file

@ -1,5 +1,4 @@
//go:build !dev
// +build !dev
package perms

View file

@ -1,5 +1,4 @@
//go:build dev
// +build dev
package perms

View file

@ -1,5 +1,4 @@
//go:build tools
// +build tools
package terminal