From e2b067f0504ba41ef45786e2f83d7002bd13a7eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Mon, 1 May 2017 15:57:52 +0200 Subject: [PATCH] tpl/partials: Remouve unused method --- tpl/partials/partials.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tpl/partials/partials.go b/tpl/partials/partials.go index a57edcaec..fa4fa4e06 100644 --- a/tpl/partials/partials.go +++ b/tpl/partials/partials.go @@ -46,10 +46,6 @@ type Namespace struct { cachedPartials partialCache } -func (ns *Namespace) Foo(i interface{}) { - -} - // Include executes the named partial and returns either a string, // when the partial is a text/template, or template.HTML when html/template. func (ns *Namespace) Include(name string, contextList ...interface{}) (interface{}, error) {