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:
authorJaime Martinez <jmartinez@gitlab.com>2021-11-08 17:59:06 +0300
committerfeistel <6742251-feistel@users.noreply.gitlab.com>2021-11-08 18:27:31 +0300
commitf053d95a86f9789cb4ea084b0d3ba7c78ca62b4f (patch)
tree227108ed48fb9bccd9fc4732b0b0cc6f41840fae
parent03eaa2c1ba7858da8659c23258ce90ac6667e8a7 (diff)
style: revert explicit params type
-rw-r--r--internal/vfs/zip/vfs.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/vfs/zip/vfs.go b/internal/vfs/zip/vfs.go
index 40fa617b..090391fb 100644
--- a/internal/vfs/zip/vfs.go
+++ b/internal/vfs/zip/vfs.go
@@ -257,7 +257,7 @@ func (fs *zipVFS) findOrCreateArchive(ctx context.Context, key string) (*zipArch
}
// findOrOpenArchive gets archive from cache and tries to open it
-func (fs *zipVFS) findOrOpenArchive(ctx context.Context, key string, path string) (*zipArchive, error) {
+func (fs *zipVFS) findOrOpenArchive(ctx context.Context, key, path string) (*zipArchive, error) {
zipArchive, err := fs.findOrCreateArchive(ctx, key)
if err != nil {
return nil, err