mirror of
https://github.com/lightninglabs/lightning-terminal.git
synced 2026-08-13 12:33:36 +02:00
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:
parent
1430c6bc74
commit
4a9ac9ed3c
8 changed files with 0 additions and 8 deletions
1
app.go
1
app.go
|
|
@ -1,5 +1,4 @@
|
||||||
//go:build !litd_no_ui
|
//go:build !litd_no_ui
|
||||||
// +build !litd_no_ui
|
|
||||||
|
|
||||||
package terminal
|
package terminal
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
//go:build litd_no_ui
|
//go:build litd_no_ui
|
||||||
// +build litd_no_ui
|
|
||||||
|
|
||||||
package terminal
|
package terminal
|
||||||
|
|
||||||
|
|
|
||||||
1
deps.go
1
deps.go
|
|
@ -1,5 +1,4 @@
|
||||||
//go:build deps
|
//go:build deps
|
||||||
// +build deps
|
|
||||||
|
|
||||||
package terminal
|
package terminal
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
//go:build !itest
|
//go:build !itest
|
||||||
// +build !itest
|
|
||||||
|
|
||||||
package itest
|
package itest
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
//go:build itest
|
//go:build itest
|
||||||
// +build itest
|
|
||||||
|
|
||||||
package itest
|
package itest
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
//go:build !dev
|
//go:build !dev
|
||||||
// +build !dev
|
|
||||||
|
|
||||||
package perms
|
package perms
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
//go:build dev
|
//go:build dev
|
||||||
// +build dev
|
|
||||||
|
|
||||||
package perms
|
package perms
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
//go:build tools
|
//go:build tools
|
||||||
// +build tools
|
|
||||||
|
|
||||||
package terminal
|
package terminal
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue