Author: adc Date: Wed Feb 2 19:33:26 2005 New Revision: 151115 URL: http://svn.apache.org/viewcvs?view=rev&rev=151115 Log: Temporarily turn comment out the meat of this code until MimeMessage implements the needed methods.
Modified: geronimo/trunk/specs/javamail/src/java/javax/mail/Transport.java Modified: geronimo/trunk/specs/javamail/src/java/javax/mail/Transport.java URL: http://svn.apache.org/viewcvs/geronimo/trunk/specs/javamail/src/java/javax/mail/Transport.java?view=diff&r1=151114&r2=151115 ============================================================================== --- geronimo/trunk/specs/javamail/src/java/javax/mail/Transport.java (original) +++ geronimo/trunk/specs/javamail/src/java/javax/mail/Transport.java Wed Feb 2 19:33:26 2005 @@ -43,7 +43,8 @@ * @throws MessagingException if there was a problem sending the message */ public static void send(Message message) throws MessagingException { - send(message, message.getAllRecipients()); +// TODO: uncomment when MimeMessage imlements getAllRecipients(); +// send(message, message.getAllRecipients()); } /**