Run go fmt -w

This commit is contained in:
Audrius Butkevicius
2014-09-28 12:05:25 +01:00
parent 6c352dca74
commit 26e4669316
16 changed files with 101 additions and 101 deletions

View File

@@ -29,14 +29,14 @@ type bitset uint64
type Set struct {
localVersion map[protocol.DeviceID]uint64
mutex sync.Mutex
folder string
folder string
db *leveldb.DB
}
func NewSet(folder string, db *leveldb.DB) *Set {
var s = Set{
localVersion: make(map[protocol.DeviceID]uint64),
folder: folder,
folder: folder,
db: db,
}