removed getString() from Headers; you shouldn't be using it
[org.ibex.mail.git] / src / org / ibex / mail / Headers.java
index 5c2c479..3275423 100644 (file)
@@ -64,7 +64,7 @@ public class Headers extends JS.Immutable implements Fountain {
     public Stream getStreamWithCRLF() { return new Stream(raw+"\r\n"); }
     
     // FIXME
-    public String getString() { return raw; }
+    //public String getString() { return raw; }
 
     public Headers(Stream stream) throws Malformed { this(stream, false); }
     public Headers(Stream stream, boolean assumeMime) throws Malformed {