Skip to content

Commit

Permalink
Mark parameters of null logger to be ignord
Browse files Browse the repository at this point in the history
  • Loading branch information
jnbt committed Nov 24, 2015
1 parent f6483e0 commit 624994b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/linr/logger/null.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ module Logger
# A simple null logger without any output
# @api private
class Null < ::Logger
def initialize(*args)
def initialize(*_args)
end

def add(*args, &block)
def add(*_args, &_block)
end
end
end
Expand Down

0 comments on commit 624994b

Please sign in to comment.