Remove some temporary console logging.

This commit is contained in:
Señor Rolando 2013-12-12 23:11:55 +01:00
parent dc168c0b90
commit 8b0c0a064c

View file

@ -17,7 +17,6 @@ class PostData
post = PostData.new
post_array.each do |line|
line.each do |elem|
puts "--- post_data.line_elem: " + elem.to_s
case elem[0]
when "id"
post_id = elem[1].to_i
@ -45,7 +44,6 @@ class PostData
# We only care about the post's ID. Everything else: throw away.
if elem[0] == "id" then
cur_id = elem[1].to_i
puts "... cur_id = " + elem[1]
ret << cur_id if cur_id > latest_post_id
end
end