Skip to content

Commit

Permalink
fix(rubocop): unused method argument
Browse files Browse the repository at this point in the history
  • Loading branch information
baby-gnu committed Oct 14, 2019
1 parent 7a0054c commit da0853a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/integration/share/libraries/libvirt_socket_admin.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def method_missing(name)
end
end

def respond_to_missing?(name, include_private)
def respond_to_missing?(name, _include_private)
name == 'exist?'
end
end
2 changes: 1 addition & 1 deletion test/integration/share/libraries/libvirt_socket_ro.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def method_missing(name)
end
end

def respond_to_missing?(name, include_private)
def respond_to_missing?(name, _include_private)
name == 'exist?'
end
end
2 changes: 1 addition & 1 deletion test/integration/share/libraries/libvirt_socket_rw.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def method_missing(name)
end
end

def respond_to_missing?(name, include_private)
def respond_to_missing?(name, _include_private)
name == 'exist?'
end
end

0 comments on commit da0853a

Please sign in to comment.