Fix deprecated uses of ioutil

This commit is contained in:
comp500
2023-01-20 18:43:46 +00:00
parent 79d3ed3957
commit 672d22d0dd
6 changed files with 9 additions and 15 deletions

View File

@@ -3,7 +3,6 @@ package packinterop
import (
"bufio"
"io"
"io/ioutil"
"os"
"path/filepath"
)
@@ -68,7 +67,7 @@ func (s diskPackSource) GetFileList() ([]ImportPackFile, error) {
}
func (s diskPackSource) GetPackFile() ImportPackFile {
rc := ioutil.NopCloser(s.MetaSource)
rc := io.NopCloser(s.MetaSource)
return readerFile{s.MetaName, &rc}
}