Skip to content

Commit

Permalink
of course when I backport they release 1.16...
Browse files Browse the repository at this point in the history
  • Loading branch information
pbnjay committed Feb 17, 2021
1 parent 8709521 commit 3cf8ad7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/pbnjay/grate

go 1.15
go 1.16
3 changes: 1 addition & 2 deletions xls/xls.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import (
"encoding/binary"
"errors"
"io"
"io/ioutil"
"log"
"sync"

Expand Down Expand Up @@ -67,7 +66,7 @@ func Open(filename string) (grate.Source, error) {
if err != nil {
return nil, grate.WrapErr(err, grate.ErrNotInFormat)
}
raw, err := ioutil.ReadAll(rdr)
raw, err := io.ReadAll(rdr)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 3cf8ad7

Please sign in to comment.