Remove deadcode or fix unreachable code
This commit is contained in:
parent
e4f404d8d6
commit
3519f7416d
4 changed files with 5 additions and 4 deletions
|
|
@ -573,10 +573,6 @@ func DBClose() error {
|
|||
return db.Close()
|
||||
}
|
||||
|
||||
func DBPrepare(query string) (*sql.Stmt, error) {
|
||||
return db.Prepare(query)
|
||||
}
|
||||
|
||||
func DBQuery(query string, args ...interface{}) (*sql.Rows, error) {
|
||||
return db.Query(query, args...)
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue