|
[jira] Updated: (CODEC-81) Base64's new constructor parameters ignored: msg#00362issues-commons-apache
[ https://issues.apache.org/jira/browse/CODEC-81?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Julius Davies updated CODEC-81: ------------------------------- Attachment: codec81-fix.patch codec81-junit.patch Two patches attached: 1. codec81-junit.patch highlights the bug. 2. codec81-fix.patch fixes the bug. There's a tiny bit of code cleanup in there anticipating my next attempt at a CODEC-59 patch - in particular this, since hopefully "instanceof String" will become a valid Object type to decode. {code} - if (!(pObject instanceof byte[])) { + if (pObject instanceof byte[]) { + return decode((byte[]) pObject); + } else { throw new DecoderException("Parameter supplied to Base64 decode is not a byte[]"); } {code} > Base64's new constructor parameters ignored > ------------------------------------------- > > Key: CODEC-81 > URL: https://issues.apache.org/jira/browse/CODEC-81 > Project: Commons Codec > Issue Type: Bug > Affects Versions: 1.4 > Reporter: Julius Davies > Priority: Trivial > Fix For: 1.4 > > Attachments: codec81-fix.patch, codec81-junit.patch > > > Base64's new constructor parameters are ignored (e.g. chunkSize and > chunkSeparator) when using the Encoder interface. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
|
|
||||||||||||||||||||||||||
| News | Mail Home | sitemap | FAQ | advertise |