dbconf: fewer branches in IsValid()

pull/2/head
Liam Staskawicz 2013-07-08 23:38:31 -07:00
parent 7664678289
commit 8f76dfe638
1 changed files with 1 additions and 9 deletions

View File

@ -112,13 +112,5 @@ func NewDBDriver(name, open string) DBDriver {
// ensure we have enough info about this driver
func (drv *DBDriver) IsValid() bool {
if len(drv.Import) == 0 {
return false
}
if drv.Dialect == nil {
return false
}
return true
return len(drv.Import) > 0 && drv.Dialect != nil
}