Remove superfluous conditional, props @mattr-

This commit is contained in:
Parker Moore 2013-07-23 20:04:39 +02:00
parent a62d868c74
commit 0bb2af8dee
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ module Jekyll
# Returns Hash of post data # Returns Hash of post data
def data def data
@data ||= post.data.dup @data ||= post.data.dup
@data.delete("layout") if @data.has_key?("layout") @data.delete("layout")
@data @data
end end