This commit is contained in:
James Agnew 2017-05-25 16:06:44 -04:00
parent b96932a5c5
commit 6cf3d865f0
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ public class Base64BinaryType extends PrimitiveType<byte[]> {
if (theValue == null) {
return null;
}
return new String(Base64.encodeBase64Chunked(theValue), Constants.CHARSET_UTF8);
return new String(Base64.encodeBase64(theValue), Constants.CHARSET_UTF8);
}
@Override