Skip to content

Commit

Permalink
Merge pull request #248 from misfo/patch-1
Browse files Browse the repository at this point in the history
Remove redundant `dup`
  • Loading branch information
greatuserongithub committed Oct 22, 2013
2 parents bddaac0 + de44221 commit 49086d1
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 49086d1

Please sign in to comment.