Small code cleanup
authorNoah Campbell <noahcampbell@gmail.com>
Sun, 1 Sep 2013 03:00:57 +0000 (20:00 -0700)
committerNoah Campbell <noahcampbell@gmail.com>
Sun, 1 Sep 2013 03:00:57 +0000 (20:00 -0700)
hugolib/site.go

index 73862a3835d7aff9fc09026f6c56dd5b0a7f50ed..94e9b50dc4a6928b25b93c85955b4e74cfeb53c4 100644 (file)
@@ -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
 }