tpl/time: Remove asTime template func mapping

This commit is contained in:
Cameron Moore 2017-05-17 14:26:02 -05:00 committed by Bjørn Erik Pedersen
parent 3954160a21
commit a59525b05b

View file

@ -32,8 +32,7 @@ func init() {
// If no args are passed to `time`, assume namespace usage and
// return namespace context.
//
// If args are passed, show a deprecation warning and attempt to
// simulate the old "as time" behavior.
// If args are passed, call AsTime().
if len(v) == 0 {
return ctx
@ -59,13 +58,6 @@ func init() {
[][2]string{},
)
ns.AddMethodMapping(ctx.AsTime,
[]string{"asTime"},
[][2]string{
{`{{ (asTime "2015-01-21").Year }}`, `2015`},
},
)
return ns
}