let IMAP's join() method use Object[]'s rather than String[]'s
[org.ibex.mail.git] / src / org / ibex / mail / IMAP.java
index 611244f..2880113 100644 (file)
@@ -916,7 +916,7 @@ public class IMAP {
             }
             return ret.toString();
         }
-        private static String join(String delimit, String[] stuff) {
+        private static String join(String delimit, Object[] stuff) {
             StringBuffer ret = new StringBuffer();
             for(int i=0; i<stuff.length; i++) {
                 ret.append(stuff[i]);