You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/12/10 19:38:34 UTC

(commons-email) 03/08: Remove trailing whitespace

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

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-email.git

commit 69c511a1235dafe1dc1db8e091efa20801fdaa93
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Dec 10 14:10:21 2023 -0500

    Remove trailing whitespace
---
 src/main/java/org/apache/commons/mail/util/MimeMessageParser.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/mail/util/MimeMessageParser.java b/src/main/java/org/apache/commons/mail/util/MimeMessageParser.java
index 01af957..a2aa2a8 100644
--- a/src/main/java/org/apache/commons/mail/util/MimeMessageParser.java
+++ b/src/main/java/org/apache/commons/mail/util/MimeMessageParser.java
@@ -272,7 +272,7 @@ public class MimeMessageParser
         final DataSource dataSource = dataHandler.getDataSource();
         final String contentType = getBaseMimeType(dataSource.getContentType());
         byte[] content;
-        try (InputStream inputStream = dataSource.getInputStream()) 
+        try (InputStream inputStream = dataSource.getInputStream())
         {
             content = this.getContent(inputStream);
         }