Because I am a muppet

This commit is contained in:
Audrius Butkevicius 2015-10-23 20:21:21 +01:00
parent 4fd614be09
commit 7b5ab29a6d
3 changed files with 3 additions and 3 deletions

View File

@ -11,8 +11,8 @@ import (
"fmt" "fmt"
"log" "log"
"github.com/syncthing/protocol"
"github.com/syncthing/syncthing/lib/db" "github.com/syncthing/syncthing/lib/db"
"github.com/syncthing/syncthing/lib/protocol"
"github.com/syndtr/goleveldb/leveldb" "github.com/syndtr/goleveldb/leveldb"
) )

View File

@ -10,8 +10,8 @@ import (
"container/heap" "container/heap"
"fmt" "fmt"
"github.com/syncthing/protocol"
"github.com/syncthing/syncthing/lib/db" "github.com/syncthing/syncthing/lib/db"
"github.com/syncthing/syncthing/lib/protocol"
"github.com/syndtr/goleveldb/leveldb" "github.com/syndtr/goleveldb/leveldb"
) )

View File

@ -45,7 +45,7 @@ func main() {
if mode == "dump" { if mode == "dump" {
dump(ldb) dump(ldb)
} else if mode == "dumpsize" { } else if mode == "dumpsize" {
size(ldb) dumpsize(ldb)
} else { } else {
fmt.Println("Unknown mode") fmt.Println("Unknown mode")
} }