Skip to content

Commit 4d27977

Browse files
committed
Avoid unnecessary extra method call
1 parent 6e6a853 commit 4d27977

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/jekyll-archives/page_drop.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ class PageDrop < Jekyll::Drops::Drop
77

88
mutable false
99

10-
def_delegators :@obj, :posts, :type, :title, :date, :name, :path, :url, :permalink
11-
def_delegators :@obj, :site, :relative_path, :data
10+
def_delegators :@obj, :posts, :type, :title, :date, :name, :path, :url, :permalink,
11+
:site, :relative_path, :data
1212

1313
def fallback_data
1414
Jekyll::Utils.deep_merge_hashes(

0 commit comments

Comments
 (0)