This is an automated email from the ASF dual-hosted git repository. rcordier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 2284c51005e32894ce4628c4580ebf16e49d311b Author: Benoit Tellier <[email protected]> AuthorDate: Tue Oct 20 16:15:26 2020 +0700 JAMES-3430 Charset should be accessed via ContentDispositionParameters --- .../james/mailbox/store/mail/model/impl/Properties.java | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/mailbox/store/src/main/java/org/apache/james/mailbox/store/mail/model/impl/Properties.java b/mailbox/store/src/main/java/org/apache/james/mailbox/store/mail/model/impl/Properties.java index 52d0406..5754b71 100644 --- a/mailbox/store/src/main/java/org/apache/james/mailbox/store/mail/model/impl/Properties.java +++ b/mailbox/store/src/main/java/org/apache/james/mailbox/store/mail/model/impl/Properties.java @@ -33,7 +33,6 @@ import static org.apache.james.mailbox.store.mail.model.StandardNames.MIME_CONTE import static org.apache.james.mailbox.store.mail.model.StandardNames.MIME_CONTENT_MD5_SPACE; import static org.apache.james.mailbox.store.mail.model.StandardNames.MIME_CONTENT_TRANSFER_ENCODING_NAME; import static org.apache.james.mailbox.store.mail.model.StandardNames.MIME_CONTENT_TRANSFER_ENCODING_SPACE; -import static org.apache.james.mailbox.store.mail.model.StandardNames.MIME_CONTENT_TYPE_PARAMETER_CHARSET_NAME; import static org.apache.james.mailbox.store.mail.model.StandardNames.MIME_CONTENT_TYPE_PARAMETER_SPACE; import static org.apache.james.mailbox.store.mail.model.StandardNames.MIME_MEDIA_TYPE_NAME; import static org.apache.james.mailbox.store.mail.model.StandardNames.MIME_MIME_TYPE_SPACE; @@ -210,16 +209,6 @@ public class Properties { } /** - * Gets the RFC2045 Content-Type "charset" parameter. - * - * @return the RFC2045 Content-Type "charset" parameter, - * or null if this meta data is not present - */ - public String getCharset() { - return getFirstValue(MIME_CONTENT_TYPE_PARAMETER_SPACE, MIME_CONTENT_TYPE_PARAMETER_CHARSET_NAME); - } - - /** * Gets the RFC1766 Content-Language. * * @return list of parsed langauge tags from the RFC1766 Content-Language, --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
