meatballspaghetti opened a new pull request, #4791: URL: https://github.com/apache/accumulo/pull/4791
This PR attempts to address all String-to-bytes and bytes-to-String conversions so they all consistently use UTF-8 (see more commentary in #3815). Being a follow-on to #3815, this PR mostly makes changes to test code that had not previously been covered. The following fixes have been made: - `getBytes()` method: `String.getBytes()` -> `String.getBytes(UTF_8)` - String construction from byte array: `new String(byte[])` -> `new String(byte[], UTF_8)` Fixes #4765 "Fix String-to-bytes and bytes-toString for UTF-8 for all remaining code" -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
