Skip to content

Commit 1709812

Browse files
author
doug
committed
remove debugging
1 parent ebc096a commit 1709812

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

lib/geocoder/lookups/base.rb

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -222,8 +222,6 @@ def parse_json(data)
222222
# Parses a raw search result (returns hash or array).
223223
#
224224
def parse_raw_data(raw_data)
225-
ap "parsing..."
226-
ap raw_data
227225
parse_json(raw_data)
228226
end
229227

@@ -308,10 +306,6 @@ def make_api_request(query)
308306
configuration.basic_auth[:password]
309307
)
310308
end
311-
puts "attemptinmgm client requewst...."
312-
ap configuration.http_headers
313-
ap client
314-
ap req
315309
client.request(req)
316310
end
317311
rescue Timeout::Error

lib/geocoder/lookups/reverse_geocoder.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ def parse_raw_data(raw_data)
4848

4949
def results(query)
5050
return [] unless doc = fetch_data(query)
51-
ap doc
5251
doc.is_a?(Array) ? doc : [doc]
5352
return doc.map{|r| remap_result(r)}
5453
end

0 commit comments

Comments
 (0)