From: Cameron Moore Date: Wed, 17 May 2017 19:26:02 +0000 (-0500) Subject: tpl/time: Remove asTime template func mapping X-Git-Tag: v0.21~10 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=a59525b0;p=brevno-suite%2Fhugo tpl/time: Remove asTime template func mapping --- diff --git a/tpl/time/init.go b/tpl/time/init.go index 9f9cf275..8e21bca6 100644 --- a/tpl/time/init.go +++ b/tpl/time/init.go @@ -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 }