From f8b41770a60ee87dd0115a1436d0a4edf1f4181f Mon Sep 17 00:00:00 2001 From: Will Scott Date: Tue, 2 Jan 2024 16:43:25 +0100 Subject: [PATCH] finish move to preferred go:build formatting --- example/osnfs/changeos_unix.go | 1 - file/file_unix.go | 1 - file/file_windows.go | 1 - 3 files changed, 3 deletions(-) diff --git a/example/osnfs/changeos_unix.go b/example/osnfs/changeos_unix.go index 1c6d1ca..2fe93c6 100644 --- a/example/osnfs/changeos_unix.go +++ b/example/osnfs/changeos_unix.go @@ -1,5 +1,4 @@ //go:build darwin || dragonfly || freebsd || linux || nacl || netbsd || openbsd || solaris -// +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris package main diff --git a/file/file_unix.go b/file/file_unix.go index 5ee0589..6658c20 100644 --- a/file/file_unix.go +++ b/file/file_unix.go @@ -1,5 +1,4 @@ //go:build darwin || dragonfly || freebsd || linux || nacl || netbsd || openbsd || solaris -// +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris package file diff --git a/file/file_windows.go b/file/file_windows.go index cbd081a..ef173d5 100644 --- a/file/file_windows.go +++ b/file/file_windows.go @@ -1,5 +1,4 @@ //go:build windows -// +build windows package file