Remove redundant self

This commit is contained in:
Erik Michaels-Ober 2016-08-08 10:56:38 -07:00
parent a00a2dcbc3
commit d941c4bcb1
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ class ExampleStrategy
option :name, 'test'
def call(env)
options[:dup] ? super : self.call!(env)
options[:dup] ? super : call!(env)
end
def initialize(*args, &block)