Skip to content

Commit

Permalink
Remove unnecessary rubocop disable comments. (#1551)
Browse files Browse the repository at this point in the history
These were added in #1550 because of an unsafe autocorrect, but have since been addressed in rubocop/rubocop#12628
  • Loading branch information
iMacTia committed Jan 20, 2024
1 parent 18154c8 commit f56e938
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
28 changes: 14 additions & 14 deletions lib/faraday/adapter/test.rb
Expand Up @@ -99,32 +99,32 @@ def match(env)
matches?(consumed, env)
end

def get(path, headers = {}, &block) # rubocop:disable Style/ArgumentsForwarding
new_stub(:get, path, headers, &block) # rubocop:disable Style/ArgumentsForwarding
def get(path, headers = {}, &block)
new_stub(:get, path, headers, &block)
end

def head(path, headers = {}, &block) # rubocop:disable Style/ArgumentsForwarding
new_stub(:head, path, headers, &block) # rubocop:disable Style/ArgumentsForwarding
def head(path, headers = {}, &block)
new_stub(:head, path, headers, &block)
end

def post(path, body = nil, headers = {}, &block) # rubocop:disable Style/ArgumentsForwarding
new_stub(:post, path, headers, body, &block) # rubocop:disable Style/ArgumentsForwarding
def post(path, body = nil, headers = {}, &block)
new_stub(:post, path, headers, body, &block)
end

def put(path, body = nil, headers = {}, &block) # rubocop:disable Style/ArgumentsForwarding
new_stub(:put, path, headers, body, &block) # rubocop:disable Style/ArgumentsForwarding
def put(path, body = nil, headers = {}, &block)
new_stub(:put, path, headers, body, &block)
end

def patch(path, body = nil, headers = {}, &block) # rubocop:disable Style/ArgumentsForwarding
new_stub(:patch, path, headers, body, &block) # rubocop:disable Style/ArgumentsForwarding
def patch(path, body = nil, headers = {}, &block)
new_stub(:patch, path, headers, body, &block)
end

def delete(path, headers = {}, &block) # rubocop:disable Style/ArgumentsForwarding
new_stub(:delete, path, headers, &block) # rubocop:disable Style/ArgumentsForwarding
def delete(path, headers = {}, &block)
new_stub(:delete, path, headers, &block)
end

def options(path, headers = {}, &block) # rubocop:disable Style/ArgumentsForwarding
new_stub(:options, path, headers, &block) # rubocop:disable Style/ArgumentsForwarding
def options(path, headers = {}, &block)
new_stub(:options, path, headers, &block)
end

# Raises an error if any of the stubbed calls have not been made.
Expand Down
4 changes: 2 additions & 2 deletions lib/faraday/middleware_registry.rb
Expand Up @@ -59,9 +59,9 @@ def lookup_middleware(key)

private

def middleware_mutex(&block) # rubocop:disable Style/ArgumentsForwarding
def middleware_mutex(&block)
@middleware_mutex ||= Monitor.new
@middleware_mutex.synchronize(&block) # rubocop:disable Style/ArgumentsForwarding
@middleware_mutex.synchronize(&block)
end

def load_middleware(key)
Expand Down

0 comments on commit f56e938

Please sign in to comment.