tpl/time: Remove asTime template func mapping
authorCameron Moore <moorereason@gmail.com>
Wed, 17 May 2017 19:26:02 +0000 (14:26 -0500)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 19 May 2017 21:00:20 +0000 (00:00 +0300)
tpl/time/init.go

index 9f9cf275fcf72f121982e9db27d6d7386e81ca51..8e21bca61288bebbe4a78bed784b037d998eded3 100644 (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
 
        }