This is an automated email from the ASF dual-hosted git repository.

coheigea pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 19d827b  Removing unnecessary import
19d827b is described below

commit 19d827bac97f8f305d3cd4c1ba2434ef358213a5
Author: Colm O hEigeartaigh <[email protected]>
AuthorDate: Thu Feb 7 14:56:17 2019 +0000

    Removing unnecessary import
---
 .../test/java/org/apache/camel/component/mail/MailRecipientsTest.java   | 2 --
 1 file changed, 2 deletions(-)

diff --git 
a/components/camel-mail/src/test/java/org/apache/camel/component/mail/MailRecipientsTest.java
 
b/components/camel-mail/src/test/java/org/apache/camel/component/mail/MailRecipientsTest.java
index 490d81e..feaf5c9 100644
--- 
a/components/camel-mail/src/test/java/org/apache/camel/component/mail/MailRecipientsTest.java
+++ 
b/components/camel-mail/src/test/java/org/apache/camel/component/mail/MailRecipientsTest.java
@@ -20,7 +20,6 @@ import java.util.HashMap;
 import java.util.Map;
 
 import javax.mail.Message;
-import javax.mail.internet.InternetAddress;
 
 import org.apache.camel.builder.RouteBuilder;
 import org.apache.camel.test.junit4.CamelTestSupport;
@@ -104,7 +103,6 @@ public class MailRecipientsTest extends CamelTestSupport {
         Message msg = box.get(0);
         assertEquals("[email protected]", 
msg.getRecipients(Message.RecipientType.TO)[0].toString());
         assertNull(msg.getRecipients(Message.RecipientType.CC));
-        // TODO assertEquals("[email protected]", 
msg.getRecipients(Message.RecipientType.CC)[0].toString());
     }
 
     @Test

Reply via email to