mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-27 11:42:16 -05:00
Package visibility
This commit is contained in:
parent
12291bceb5
commit
e59adf46c0
@ -33,7 +33,7 @@ import java.nio.charset.Charset;
|
|||||||
* @since 1.0-dev
|
* @since 1.0-dev
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
public class Base64 {
|
class Base64 {
|
||||||
/**
|
/**
|
||||||
* Chunk size per RFC 2045 section 6.8.
|
* Chunk size per RFC 2045 section 6.8.
|
||||||
*
|
*
|
||||||
|
@ -16,7 +16,7 @@ import com.fsck.k9.mail.MessagingException;
|
|||||||
* {@link LocalAttachmentMessageBody} relates to a {@link LocalAttachmentBody}.
|
* {@link LocalAttachmentMessageBody} relates to a {@link LocalAttachmentBody}.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class BinaryTempFileMessageBody extends BinaryTempFileBody implements CompositeBody {
|
class BinaryTempFileMessageBody extends BinaryTempFileBody implements CompositeBody {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void setEncoding(String encoding) throws MessagingException {
|
public void setEncoding(String encoding) throws MessagingException {
|
||||||
|
@ -21,7 +21,7 @@ import org.apache.james.mime4j.util.CharsetUtil;
|
|||||||
* decode emoji characters in the Subject headers. The method to decode emoji depends on the MimeMessage class because
|
* decode emoji characters in the Subject headers. The method to decode emoji depends on the MimeMessage class because
|
||||||
* it has to be determined with the sender address, the mailer and so on.
|
* it has to be determined with the sender address, the mailer and so on.
|
||||||
*/
|
*/
|
||||||
public class DecoderUtil {
|
class DecoderUtil {
|
||||||
/**
|
/**
|
||||||
* Decodes an encoded word encoded with the 'B' encoding (described in
|
* Decodes an encoded word encoded with the 'B' encoding (described in
|
||||||
* RFC 2047) found in a header field body.
|
* RFC 2047) found in a header field body.
|
||||||
|
@ -16,7 +16,7 @@ import org.apache.james.mime4j.util.CharsetUtil;
|
|||||||
* encode emoji characters in the Subject headers. The method to decode emoji depends on the MimeMessage class because
|
* encode emoji characters in the Subject headers. The method to decode emoji depends on the MimeMessage class because
|
||||||
* it has to be determined with the sender address.
|
* it has to be determined with the sender address.
|
||||||
*/
|
*/
|
||||||
public class EncoderUtil {
|
class EncoderUtil {
|
||||||
private static final BitSet Q_RESTRICTED_CHARS = initChars("=_?\"#$%&'(),.:;<>@[\\]^`{|}~");
|
private static final BitSet Q_RESTRICTED_CHARS = initChars("=_?\"#$%&'(),.:;<>@[\\]^`{|}~");
|
||||||
|
|
||||||
private static final String ENC_WORD_PREFIX = "=?";
|
private static final String ENC_WORD_PREFIX = "=?";
|
||||||
|
Loading…
Reference in New Issue
Block a user