Skip to content

Commit

Permalink
Remove redundant dup
Browse files Browse the repository at this point in the history
  • Loading branch information
misfo committed Oct 22, 2013
1 parent bddaac0 commit de44221
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/httparty.rb
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ def default_options #:nodoc:
private

def perform_request(http_method, path, options, &block) #:nodoc:
options = default_options.dup.merge(options)
options = default_options.merge(options)
process_cookies(options)
Request.new(http_method, path, options).perform(&block)
end
Expand Down

0 comments on commit de44221

Please sign in to comment.