Package time isn't needed in these cases.
This commit is contained in:
parent
40064f9e27
commit
6eb69d0c96
|
@ -953,7 +953,6 @@ ArgLoop:
|
||||||
leftParam, _ := c.compileIfVarSub(con, leftOperand)
|
leftParam, _ := c.compileIfVarSub(con, leftOperand)
|
||||||
// TODO: Refactor this
|
// TODO: Refactor this
|
||||||
litString(leftParam+".Format(\"2006-01-02 15:04:05\")", false)
|
litString(leftParam+".Format(\"2006-01-02 15:04:05\")", false)
|
||||||
c.importMap["time"] = "time"
|
|
||||||
break ArgLoop
|
break ArgLoop
|
||||||
case "scope":
|
case "scope":
|
||||||
literal = true
|
literal = true
|
||||||
|
@ -1277,7 +1276,6 @@ func (c *CTemplateSet) compileVarSub(con CContext, varname string, val reflect.V
|
||||||
case reflect.Struct:
|
case reflect.Struct:
|
||||||
// TODO: Avoid clashing with other packages which have structs named Time
|
// TODO: Avoid clashing with other packages which have structs named Time
|
||||||
if val.Type().Name() == "Time" {
|
if val.Type().Name() == "Time" {
|
||||||
c.importMap["time"] = "time"
|
|
||||||
base = "[]byte(" + varname + ".String())"
|
base = "[]byte(" + varname + ".String())"
|
||||||
} else {
|
} else {
|
||||||
if !val.IsValid() {
|
if !val.IsValid() {
|
||||||
|
|
Loading…
Reference in New Issue