Remove layouts named param from Renderer#initialize

This commit is contained in:
Parker Moore 2016-09-01 13:26:14 -07:00
parent a78426f20d
commit 4af0f0262e
No known key found for this signature in database
GPG Key ID: 193CDEBA72063C58
1 changed files with 1 additions and 2 deletions

View File

@ -5,11 +5,10 @@ module Jekyll
attr_reader :document, :site
attr_writer :layouts, :payload
def initialize(site, document, site_payload = nil, layouts: nil)
def initialize(site, document, site_payload = nil)
@site = site
@document = document
@payload = site_payload
@layouts = layouts
end
# Fetches the payload used in Liquid rendering.