Skip to content

Commit 4a9ac9e

Browse files
committed
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.
1 parent 1430c6b commit 4a9ac9e

File tree

8 files changed

+0
-8
lines changed

8 files changed

+0
-8
lines changed

app.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//go:build !litd_no_ui
2-
// +build !litd_no_ui
32

43
package terminal
54

app_noui.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//go:build litd_no_ui
2-
// +build litd_no_ui
32

43
package terminal
54

deps.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//go:build deps
2-
// +build deps
32

43
package terminal
54

itest/litd_test_list_off_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//go:build !itest
2-
// +build !itest
32

43
package itest
54

itest/litd_test_list_on_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//go:build itest
2-
// +build itest
32

43
package itest
54

perms/mock.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//go:build !dev
2-
// +build !dev
32

43
package perms
54

perms/mock_dev.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//go:build dev
2-
// +build dev
32

43
package perms
54

tools/tools.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//go:build tools
2-
// +build tools
32

43
package terminal
54

0 commit comments

Comments
 (0)