aboutsummaryrefslogtreecommitdiff
path: root/internal/lfsutil/storage.go
diff options
context:
space:
mode:
authordeepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>2022-03-06 16:37:41 +0800
committerGitHub <noreply@github.com>2022-03-06 16:37:41 +0800
commit09dbbf9a6989c8045e0297c5d62c9e0c2732c1d9 (patch)
tree89e87d402ad163d5eaf93cf10824d0cc471654d9 /internal/lfsutil/storage.go
parentb7372b1f32cd0bb40984debfb049e3fc04efaee4 (diff)
autofix: fix unused method receiver (#6808)
Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
Diffstat (limited to 'internal/lfsutil/storage.go')
-rw-r--r--internal/lfsutil/storage.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/lfsutil/storage.go b/internal/lfsutil/storage.go
index a357b8a8..be0660fc 100644
--- a/internal/lfsutil/storage.go
+++ b/internal/lfsutil/storage.go
@@ -45,7 +45,7 @@ type LocalStorage struct {
Root string
}
-func (s *LocalStorage) Storage() Storage {
+func (*LocalStorage) Storage() Storage {
return StorageLocal
}