Fixed an infinite recursion in Base64

This commit is contained in:
Trustin Lee 2009-02-13 10:37:10 +00:00
parent db18337762
commit c153fd5bd0

View File

@ -75,7 +75,7 @@ public class Base64 {
if (dialect == null) {
throw new NullPointerException("dialect");
}
return breakLines(dialect);
return dialect.breakLinesByDefault;
}
public static ChannelBuffer encode(ChannelBuffer src) {