rename MailboxTree -> MailTree
[org.ibex.mail.git] / src / org / ibex / mail / Mailbox.java
index ec0612f..59c8268 100644 (file)
@@ -48,7 +48,7 @@ public abstract class Mailbox extends JS.Obj implements Target {
         public int count(Query q) { int count = 0; for(Mailbox.Iterator it = iterator(q); it.next();) count++; return count; }
         public void rename(String newName) { throw new MailException("not supported"); }
         public void  destroy(boolean recursive) { throw new MailException("not supported"); }
-        public MailboxTree slash(String name, boolean create) { return null; }
+        public MailTree slash(String name, boolean create) { return null; }
         public String[] children() { return new String[] { }; }
         public void post(Message message) { insert(message, Flag.RECENT); }
         public void move(Query q, Mailbox dest) {