garydgregory commented on PR #437:
URL: https://github.com/apache/commons-compress/pull/437#issuecomment-1807149980
Why is this:
```
final StringBuilder sb = new StringBuilder();
sb.append("abcdefghijklmnop");
final byte[] random = sb.toString().getBytes();
```
Not just:
```
final byte[] random = "abcdefghijklmnop".getBytes();
```
?
I updated git master.
--
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]