Use super rather than render_all in single block render classes.

This commit is contained in:
Dylan Thacker-Smith
2014-09-12 16:58:07 -04:00
parent 478eb893a9
commit 0573b63b4c
3 changed files with 3 additions and 5 deletions
+1 -3
View File
@@ -4,8 +4,6 @@ class Paginate < Liquid::Block
def initialize(tag_name, markup, options)
super
@nodelist = []
if markup =~ Syntax
@collection_name = $1
@page_size = if $2
@@ -73,7 +71,7 @@ class Paginate < Liquid::Block
end
end
render_all(@nodelist, context)
super
end
end