Skip to content
This repository was archived by the owner on Sep 11, 2020. It is now read-only.

Commit 95acbf6

Browse files
committed
storage/filesystem: make Storage options private
Signed-off-by: Javi Fontan <jfontan@gmail.com>
1 parent cf62667 commit 95acbf6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

storage/filesystem/storage.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
// standard git format (this is, the .git directory). Zero values of this type
1313
// are not safe to use, see the NewStorage function below.
1414
type Storage struct {
15-
storer.Options
15+
options storer.Options
1616

1717
fs billy.Filesystem
1818
dir *dotgit.DotGit
@@ -42,7 +42,7 @@ func NewStorageWithOptions(
4242
}
4343

4444
return &Storage{
45-
Options: ops,
45+
options: ops,
4646
fs: fs,
4747
dir: dir,
4848

0 commit comments

Comments
 (0)