summaryrefslogtreecommitdiff
path: root/vendor/github.com/dsoprea/go-utility/v2/filesystem/utility.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/dsoprea/go-utility/v2/filesystem/utility.go')
-rw-r--r--vendor/github.com/dsoprea/go-utility/v2/filesystem/utility.go17
1 files changed, 0 insertions, 17 deletions
diff --git a/vendor/github.com/dsoprea/go-utility/v2/filesystem/utility.go b/vendor/github.com/dsoprea/go-utility/v2/filesystem/utility.go
deleted file mode 100644
index 4b33b41a9..000000000
--- a/vendor/github.com/dsoprea/go-utility/v2/filesystem/utility.go
+++ /dev/null
@@ -1,17 +0,0 @@
-package rifs
-
-import (
- "io"
- "os"
-
- "github.com/dsoprea/go-logging"
-)
-
-// GetOffset returns the current offset of the Seeker and just panics if unable
-// to find it.
-func GetOffset(s io.Seeker) int64 {
- offsetRaw, err := s.Seek(0, os.SEEK_CUR)
- log.PanicIf(err)
-
- return offsetRaw
-}