class GdsApi::JsonClient

def delete_json_with_params!(url, params, additional_headers = {})

def delete_json_with_params!(url, params, additional_headers = {})
  warn <<-doc
    DEPRECATION NOTICE: Delete requests should not include parameters.
    Do not use this method as the ability to do this will be removed.
    Called from: #{caller[2]}
  doc
  do_json_request(:delete, url, params, additional_headers)
end