Remove unused functions, variables, fields

opts/env_test: suppress a linter warning

this one:

> opts/env_test.go:95:4: U1000: field `err` is unused (unused)
> 			err      error
>			^

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2019-08-05 17:50:51 +02:00
parent bca161d7cb
commit 744f1c261c
8 changed files with 8 additions and 13 deletions

View File

@@ -127,7 +127,6 @@ type scanner struct {
delim []byte
err error
idx int
done bool
}
func (s *scanner) Start(ctx context.Context) int64 {