]> git.cworth.org Git - sup/blobdiff - lib/sup/modes/line-cursor-mode.rb
Merge branch 'master' into next
[sup] / lib / sup / modes / line-cursor-mode.rb
index 51a59134f1ca6a92effba651aec4404f5fb60b5a..c7c6b9a73b00dfa0fbfd5836fc20fb19e69a8930 100644 (file)
@@ -19,7 +19,6 @@ class LineCursorMode < ScrollMode
     @load_more_thread = ::Thread.new do
       while true
         e = @load_more_q.pop
-        debug "calling callbacks on #{e.inspect}"
         @load_more_callbacks.each { |c| c.call e }
       end
     end
@@ -29,7 +28,6 @@ class LineCursorMode < ScrollMode
 
   def cleanup
     @load_more_thread.kill
-    debug "killing thread"
     super
   end