go1.17: run goimports to supports the new //go:build lines

This commit is contained in:
Christian Schwarz 2021-10-09 16:50:25 +02:00
parent 1edb8014bc
commit a6dbda1ea8
7 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,4 @@
//go:build tools
// +build tools
package main

View File

@ -1,3 +1,4 @@
//go:build illumos || solaris
// +build illumos solaris
package timeoutconn

View File

@ -1,5 +1,5 @@
// +build !illumos
// +build !solaris
//go:build !illumos && !solaris
// +build !illumos,!solaris
package timeoutconn

View File

@ -1,3 +1,4 @@
//go:build freebsd
// +build freebsd
package tcpsock

View File

@ -1,3 +1,4 @@
//go:build linux
// +build linux
package tcpsock

View File

@ -1,3 +1,4 @@
//go:build !linux && !freebsd
// +build !linux,!freebsd
package tcpsock

View File

@ -1,3 +1,4 @@
//go:build !linux
// +build !linux
package zfs