add whitelisting code
[org.ibex.mail.git] / src / org / ibex / mail / target / SqliteJdbcMailbox.java
index 587cf95..a4830a1 100644 (file)
@@ -72,7 +72,7 @@ public class SqliteJdbcMailbox extends Mailbox.Default {
         public void    delete() { throw new RuntimeException("not supported"); }
     }
 
-    public static String streamToString(Stream stream) throws Exception {
+    private static String streamToString(Stream stream) throws Exception {
         StringBuffer b = new StringBuffer();
         for(String s = stream.readln(); s!=null; s=stream.readln())
             b.append(s+"\n");