Fixing up source code formatting.

This commit is contained in:
Noah Campbell 2013-10-01 14:27:09 -07:00
parent 5a66fa3954
commit 94a3184ad0

View file

@ -27,7 +27,9 @@ type Filesystem struct {
} }
func (f *Filesystem) Files() []*File { func (f *Filesystem) Files() []*File {
if len(f.files)<1 {f.captureFiles()} if len(f.files) < 1 {
f.captureFiles()
}
return f.files return f.files
} }