Added comment that states the quoted-printable encoder was taken from Apache Mime4j version 0.6.

This commit is contained in:
cketti 2010-02-05 16:10:21 +00:00
parent c64c0a1c30
commit f1fba69790
2 changed files with 4 additions and 0 deletions

View File

@ -23,6 +23,8 @@ import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
// Taken from Apache Mime4j 0.6
final class QuotedPrintableEncoder
{
private static final byte TAB = 0x09;

View File

@ -23,6 +23,8 @@ import java.io.FilterOutputStream;
import java.io.IOException;
import java.io.OutputStream;
// Taken from Apache Mime4j 0.6
/**
* Performs Quoted-Printable encoding on an underlying stream.
*/