Browse Source

go fmt

pull/1804/head
Chris Lu 4 years ago
parent
commit
a0e84c4fbc
  1. 2
      weed/filesys/wfs.go
  2. 1
      weed/util/bounded_tree/bounded_tree.go

2
weed/filesys/wfs.go

@ -3,8 +3,8 @@ package filesys
import ( import (
"context" "context"
"fmt" "fmt"
"github.com/chrislusf/seaweedfs/weed/storage"
"github.com/chrislusf/seaweedfs/weed/filer" "github.com/chrislusf/seaweedfs/weed/filer"
"github.com/chrislusf/seaweedfs/weed/storage"
"github.com/chrislusf/seaweedfs/weed/wdclient" "github.com/chrislusf/seaweedfs/weed/wdclient"
"math" "math"
"os" "os"

1
weed/util/bounded_tree/bounded_tree.go

@ -70,7 +70,6 @@ func (t *BoundedTree) ensureVisited(n *Node, currentPath util.FullPath, componen
} else { } else {
// fmt.Printf("ensure %v\n", currentPath) // fmt.Printf("ensure %v\n", currentPath)
children, err := visitFn(currentPath) children, err := visitFn(currentPath)
if err != nil { if err != nil {
glog.V(0).Infof("failed to visit %s: %v", currentPath, err) glog.V(0).Infof("failed to visit %s: %v", currentPath, err)

Loading…
Cancel
Save