Package visibility

This commit is contained in:
Jan Berkel 2014-12-12 00:08:25 +00:00
parent 12291bceb5
commit e59adf46c0
4 changed files with 4 additions and 4 deletions

View File

@ -33,7 +33,7 @@ import java.nio.charset.Charset;
* @since 1.0-dev
* @version $Id$
*/
public class Base64 {
class Base64 {
/**
* Chunk size per RFC 2045 section 6.8.
*

View File

@ -16,7 +16,7 @@ import com.fsck.k9.mail.MessagingException;
* {@link LocalAttachmentMessageBody} relates to a {@link LocalAttachmentBody}.
*
*/
public class BinaryTempFileMessageBody extends BinaryTempFileBody implements CompositeBody {
class BinaryTempFileMessageBody extends BinaryTempFileBody implements CompositeBody {
@Override
public void setEncoding(String encoding) throws MessagingException {

View File

@ -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
* 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
* RFC 2047) found in a header field body.

View File

@ -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
* 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 String ENC_WORD_PREFIX = "=?";