app/src/main/java/org/apache/roller/planet/util/MailUtil.java [208:229]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    (
            Session session,
            String from,
            String to,
            String cc,
            String bcc,
            String subject,
            String content
    )
            throws MessagingException {
        String[] recipient = null;
        String[] copy = null;
        String[] bcopy = null;

        if (to != null) {
            recipient = new String[]{to};
        }
        if (cc != null) {
            copy = new String[]{cc};
        }
        if (bcc != null) {
            bcopy = new String[]{bcc};
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



app/src/main/java/org/apache/roller/planet/util/MailUtil.java [269:290]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    (
            Session session,
            String from,
            String to,
            String cc,
            String bcc,
            String subject,
            String content
    )
            throws MessagingException {
        String[] recipient = null;
        String[] copy = null;
        String[] bcopy = null;

        if (to != null) {
            recipient = new String[]{to};
        }
        if (cc != null) {
            copy = new String[]{cc};
        }
        if (bcc != null) {
            bcopy = new String[]{bcc};
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



