Return-Path: X-Original-To: apmail-james-mime4j-dev-archive@minotaur.apache.org Delivered-To: apmail-james-mime4j-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 80579DFA4 for ; Wed, 15 May 2013 14:40:19 +0000 (UTC) Received: (qmail 26054 invoked by uid 500); 15 May 2013 14:40:19 -0000 Delivered-To: apmail-james-mime4j-dev-archive@james.apache.org Received: (qmail 25655 invoked by uid 500); 15 May 2013 14:40:18 -0000 Mailing-List: contact mime4j-dev-help@james.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: mime4j-dev@james.apache.org Delivered-To: mailing list mime4j-dev@james.apache.org Received: (qmail 25631 invoked by uid 99); 15 May 2013 14:40:18 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 May 2013 14:40:18 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 May 2013 14:40:16 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 618FC2388906; Wed, 15 May 2013 14:39:55 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1482868 - in /james/mime4j/trunk/dom/src/main/java/org/apache/james/mime4j/message: BasicBodyFactory.java BasicTextBody.java Date: Wed, 15 May 2013 14:39:55 -0000 To: mime4j-dev@james.apache.org From: olegk@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130515143955.618FC2388906@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: olegk Date: Wed May 15 14:39:55 2013 New Revision: 1482868 URL: http://svn.apache.org/r1482868 Log: Removed redundant class Removed: james/mime4j/trunk/dom/src/main/java/org/apache/james/mime4j/message/BasicTextBody.java Modified: james/mime4j/trunk/dom/src/main/java/org/apache/james/mime4j/message/BasicBodyFactory.java Modified: james/mime4j/trunk/dom/src/main/java/org/apache/james/mime4j/message/BasicBodyFactory.java URL: http://svn.apache.org/viewvc/james/mime4j/trunk/dom/src/main/java/org/apache/james/mime4j/message/BasicBodyFactory.java?rev=1482868&r1=1482867&r2=1482868&view=diff ============================================================================== --- james/mime4j/trunk/dom/src/main/java/org/apache/james/mime4j/message/BasicBodyFactory.java (original) +++ james/mime4j/trunk/dom/src/main/java/org/apache/james/mime4j/message/BasicBodyFactory.java Wed May 15 14:39:55 2013 @@ -36,8 +36,8 @@ public class BasicBodyFactory implements public BinaryBody binaryBody(final InputStream is) throws IOException { return BodyBuilder.create() - .readFrom(is). - buildBinary(); + .readFrom(is) + .buildBinary(); } protected Charset resolveCharset(final String mimeCharset) throws UnsupportedEncodingException {