-
Notifications
You must be signed in to change notification settings - Fork 519
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
Refactor RegistryAuthConfiguration to use isEmpty() instead of length() > 0 #3308
Refactor RegistryAuthConfiguration to use isEmpty() instead of length() > 0 #3308
Conversation
Eclipse JKube CI ReportStarted new GH workflow run for #3308 (2024-08-06T14:54:39Z) ⚙️ JKube E2E Tests (10268693345)
|
@AhmedFaizanDev Welcome, Thanks a lot for contributing to Eclipse JKube 👍, In order to contribute to Eclipse, you would need to create an Eclipse Account and Sign Eclipse Contributor Agreement. Once you've created an eclipse account you would need to update your commit message with a
|
Quality Gate passedIssues Measures |
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.
LGTM, thx!
Description
This pull request refactors the
RegistryAuthConfiguration
class by replacing the conditioncontent[i + 1].length() > 0
with!content[i + 1].isEmpty()
. This change improves code readability and utilizes the existingisEmpty()
method for better clarity.Fixes #3258
Type of change
Checklist