Daniel L. Rall wrote:
- return base64Codec.decode(cdata.getBytes()); + return base64Codec.decode((Object) cdata.getBytes());
This cast looks unnecessary. What's the thinking here?
No, it's required, because the compiler would pick the old method otherwise.