remove no longer necessary conditional compiles

This commit is contained in:
Michael Eischer 2022-11-26 12:07:57 +01:00
parent bcdfc2a8ea
commit a1eb923876
3 changed files with 0 additions and 17 deletions

View File

@ -1,10 +1,3 @@
//go:build go1.16
// +build go1.16
// Before Go 1.16 filepath.Match returned early on a failed match,
// and thus did not report any later syntax error in the pattern.
// https://go.dev/doc/go1.16#path/filepath
package main
import (

View File

@ -1,10 +1,3 @@
//go:build go1.16
// +build go1.16
// Before Go 1.16 filepath.Match returned early on a failed match,
// and thus did not report any later syntax error in the pattern.
// https://go.dev/doc/go1.16#path/filepath
package filter_test
import (

View File

@ -1,6 +1,3 @@
//go:build go1.18
// +build go1.18
package repository
import (