corrected line counting
[org.ibex.mail.git] / src / org / ibex / mail / Message.java
index c9fc2ae..1243c56 100644 (file)
@@ -56,8 +56,6 @@ public class Message extends MIME.Part {
     public final Address[]   cc;
     public final Address[]   bcc;
     public final Hashtable[] resent;
-    public final int         lines;                   // lines in the body  FIXME not accurate anymore
-
 
     public Message(Stream stream, Envelope envelope) throws Malformed {
         super(stream, null, false);
@@ -71,7 +69,6 @@ public class Message extends MIME.Part {
         this.cc           = Address.list(headers.get("Cc"));
         this.bcc          = Address.list(headers.get("BCc"));
         this.date         = parseDate(headers.get("Date"));
-        this.lines        = 0; /* FIMXE */
         resent.copyInto(this.resent = new Hashtable[resent.size()]);
         traces.copyInto(this.traces = new Trace[traces.size()]);
     }