From: Noah Campbell Date: Sun, 1 Sep 2013 03:00:57 +0000 (-0700) Subject: Small code cleanup X-Git-Tag: v0.9~127 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=4349216d;p=brevno-suite%2Fhugo Small code cleanup --- diff --git a/hugolib/site.go b/hugolib/site.go index 73862a38..94e9b50d 100644 --- a/hugolib/site.go +++ b/hugolib/site.go @@ -646,11 +646,9 @@ func (s *Site) Stats() { } } -func (s *Site) NewNode() Node { - var y Node +func (s *Site) NewNode() (y Node) { y.Data = make(map[string]interface{}) y.Site = s.Info - return y }