Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'internal/vfs/root.go')
-rw-r--r--internal/vfs/root.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/internal/vfs/root.go b/internal/vfs/root.go
index 1a2e9ccd..9c7528b3 100644
--- a/internal/vfs/root.go
+++ b/internal/vfs/root.go
@@ -16,7 +16,6 @@ type Root interface {
Lstat(ctx context.Context, name string) (os.FileInfo, error)
Readlink(ctx context.Context, name string) (string, error)
Open(ctx context.Context, name string) (File, error)
- IsCompressed(name string) (bool, error)
}
type instrumentedRoot struct {
@@ -69,7 +68,3 @@ func (i *instrumentedRoot) Open(ctx context.Context, name string) (File, error)
return f, err
}
-
-func (i *instrumentedRoot) IsCompressed(name string) (bool, error) {
- return i.root.IsCompressed(name)
-}