aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/dirstore.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/dirstore.go b/lib/dirstore.go
index e7ebb77..862e97a 100644
--- a/lib/dirstore.go
+++ b/lib/dirstore.go
@@ -5,9 +5,7 @@ type DirStore struct {
}
func NewDirStore() *DirStore {
- return &DirStore{
- dirs: make([]string, 0),
- }
+ return &DirStore{}
}
func (store *DirStore) Update(dirs []string) {