You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2009/01/20 01:27:57 UTC

svn commit: r735888 - /camel/trunk/components/camel-mail/src/main/java/org/apache/camel/component/mail/MailConverters.java

Author: ningjiang
Date: Mon Jan 19 16:27:57 2009
New Revision: 735888

URL: http://svn.apache.org/viewvc?rev=735888&view=rev
Log:
Fixed the build camel-mail

Modified:
    camel/trunk/components/camel-mail/src/main/java/org/apache/camel/component/mail/MailConverters.java

Modified: camel/trunk/components/camel-mail/src/main/java/org/apache/camel/component/mail/MailConverters.java
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-mail/src/main/java/org/apache/camel/component/mail/MailConverters.java?rev=735888&r1=735887&r2=735888&view=diff
==============================================================================
--- camel/trunk/components/camel-mail/src/main/java/org/apache/camel/component/mail/MailConverters.java (original)
+++ camel/trunk/components/camel-mail/src/main/java/org/apache/camel/component/mail/MailConverters.java Mon Jan 19 16:27:57 2009
@@ -86,7 +86,7 @@
         if (s == null) {
             return null;
         }
-        return IOConverter.toInputStream(s);
+        return IOConverter.toInputStream(s, null);
     }
 
     /**
@@ -99,7 +99,7 @@
         if (s == null) {
             return null;
         }
-        return IOConverter.toInputStream(s);
+        return IOConverter.toInputStream(s, null);
     }
 
 }