Fmt with 1.19 (#394)

This commit is contained in:
Jonas Plum
2022-08-21 11:33:25 +02:00
committed by GitHub
parent baa74761ad
commit 0a172c0290

View File

@@ -30,7 +30,6 @@ var ErrBadPattern = errors.New("syntax error in pattern")
// match requires pattern to match all of name, not just a substring.
// The only possible returned error is ErrBadPattern, when pattern
// is malformed.
//
func match(pattern, name string) (matched bool, err error) {
Pattern:
for len(pattern) > 0 {