sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/
commit 6d72d48d52222f3c7e2fa37cc78ed417568dd4ae
parent 733defd3698de5ac416866499b6e7f907604dea8
Author: William Morgan <wmorgan-sup@masanjin.net>
Date:   Sun, 26 Apr 2009 10:32:22 -0400

remove vestigal mbox#read_body method

Diffstat:
M lib/sup/mbox.rb | 12 +-----------
1 file changed, 1 insertion(+), 11 deletions(-)
diff --git a/lib/sup/mbox.rb b/lib/sup/mbox.rb
@@ -66,16 +66,6 @@ module MBox
     header
   end
   
-  ## never actually called
-  def read_body f
-    body = []
-    f.each_line do |l|
-      break if l =~ BREAK_RE
-      body << l.chomp
-    end
-    body
-  end
-
-  module_function :read_header, :read_body
+  module_function :read_header
 end
 end