1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-12 09:30:39 +00:00

remove the dead code

This commit is contained in:
astaxie
2015-09-17 23:47:26 +08:00
parent e665a7dd32
commit 4823a0f114
6 changed files with 5 additions and 44 deletions

View File

@ -63,7 +63,7 @@ var (
dbBasers = map[DriverType]dbBaser{
DRMySQL: newdbBaseMysql(),
DRSqlite: newdbBaseSqlite(),
DROracle: newdbBaseMysql(),
DROracle: newdbBaseOracle(),
DRPostgres: newdbBasePostgres(),
DRTiDB: newdbBaseTidb(),
}

View File

@ -249,30 +249,12 @@ func (a argInt) Get(i int, args ...int) (r int) {
return
}
type argAny []interface{}
// get interface by index from interface slice
func (a argAny) Get(i int, args ...interface{}) (r interface{}) {
if i >= 0 && i < len(a) {
r = a[i]
}
if len(args) > 0 {
r = args[0]
}
return
}
// parse time to string with location
func timeParse(dateString, format string) (time.Time, error) {
tp, err := time.ParseInLocation(format, dateString, DefaultTimeLoc)
return tp, err
}
// format time string
func timeFormat(t time.Time, format string) string {
return t.Format(format)
}
// get pointer indirect type
func indirectType(v reflect.Type) reflect.Type {
switch v.Kind() {