Skip to content

Commit 6511076

Browse files
authored
Merge pull request #1045 from sudo-bmitch/pr-lint-unused-var
Fix unused variable linting error
2 parents dd7fd71 + f4fc83a commit 6511076

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

schema/validator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ func (v Validator) Validate(src io.Reader) error {
9292

9393
type unimplemented string
9494

95-
func (v unimplemented) Validate(src io.Reader) error {
95+
func (v unimplemented) Validate(_ io.Reader) error {
9696
return fmt.Errorf("%s: unimplemented", v)
9797
}
9898

0 commit comments

Comments
 (0)