# File lib/jira/base.rb, line 496
    def url_with_query_params(url, query_params)
      if not query_params.empty?
        "#{url}?#{hash_to_query_string query_params}"
      else
        url
      end
    end