-
Notifications
You must be signed in to change notification settings - Fork 3k
Cleanup/simplification in core module #50448
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This comment has been minimized.
This comment has been minimized.
🎊 PR Preview f72af1e has been successfully built and deployed to https://quarkus-pr-main-50448-preview.surge.sh/version/main/guides/
|
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
177a06e
to
4661cdd
Compare
Rebased to resolve conflict with 4557b4a |
private static void toHex(byte[] digest, StringBuilder sb) { | ||
for (int i = 0; i < digest.length; ++i) { | ||
sb.append(Integer.toHexString((digest[i] & 0xFF) | 0x100), 1, 3); | ||
for (byte b : digest) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, this one I checked and I think it should be fine.
Status for workflow
|
Status for workflow
|
Cleanup/simplification in core module
3 commits covering: