tree: remove workaround for tree library bug now it is fixed

This commit is contained in:
Nick Craig-Wood 2017-09-30 15:51:14 +01:00
parent b017fcfe9a
commit 63d0734c71
1 changed files with 0 additions and 3 deletions

View File

@ -124,9 +124,6 @@ func Tree(fsrc fs.Fs, outFile io.Writer, opts *tree.Options) error {
inf := tree.New("/")
var nd, nf int
if d, f := inf.Visit(opts); f != 0 {
if d > 0 {
d--
}
nd, nf = nd+d, nf+f
}
inf.Print(opts)