mirror of
https://github.com/kemko/liquid.git
synced 2026-01-01 15:55:40 +03:00
Remove the Profiler#initialize argument which is effectively now unused
The @root_timing Timing object that it was used with never exposed that name.
This commit is contained in:
@@ -102,8 +102,8 @@ module Liquid
|
||||
|
||||
attr_reader :total_render_time
|
||||
|
||||
def initialize(template_name)
|
||||
@root_timing = Timing.new("", template_name)
|
||||
def initialize
|
||||
@root_timing = Timing.new("", nil)
|
||||
@timing_stack = [@root_timing]
|
||||
end
|
||||
|
||||
|
||||
@@ -220,7 +220,7 @@ module Liquid
|
||||
if @profiling && !context.partial
|
||||
raise "Profiler not loaded, require 'liquid/profiler' first" unless defined?(Liquid::Profiler)
|
||||
|
||||
@profiler = Profiler.new(context.template_name)
|
||||
@profiler = Profiler.new
|
||||
@profiler.start
|
||||
|
||||
begin
|
||||
|
||||
Reference in New Issue
Block a user