Remove double check

This commit is contained in:
Alexander Neumann 2014-11-15 15:25:30 +01:00
parent 9b75f2cab0
commit 24b4d58bdf
1 changed files with 0 additions and 5 deletions

View File

@ -69,17 +69,12 @@ func OpenLocal(dir string) (*Local, error) {
return nil, fmt.Errorf("unable to convert version to integer: %v\n", err)
}
if version != BackendVersion {
return nil, fmt.Errorf("wrong version %d", version)
}
// check version
if version != BackendVersion {
return nil, fmt.Errorf("wrong version %d", version)
}
return &Local{p: dir, ver: uint(version)}, nil
}
// CreateLocal creates all the necessary files and directories for a new local