-
Notifications
You must be signed in to change notification settings - Fork 406
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
[Improvement] In UntagEntity.java unneeded call to toString() #6517
Comments
@justinmclean assign me i will do it. |
I've fixed this issue, sorry, I hadn't seen the comment. |
@JavedAbdullah i was just pushing the PR and u submitted it. |
Sorry, this was my first open-source contribution. I was working on it and didn’t see the comment. |
@Brijeshthummar02, we have other issues marked good first issue https://github.com/apache/gravitino/contribute. You can select one of those. I'll also add some more tomorrow that will be easy to fix. |
@justinmclean Sure i will keep eye on it and try to fix as many as possible, it just boosts my Open Source work! |
### What changes were proposed in this pull request? As tags is an array of strings, `tags[0].toString()` doesn't require `toString()`. ### Why are the changes needed? to string method not needed. Fix: #6517 ### Does this PR introduce _any_ user-facing change? no ### How was this patch tested? no needed
What would you like to be improved?
As tags is an array of strings,
tags[0].toString()
doesn't requiretoString()
.How should we improve?
Remove
toString()
call.The text was updated successfully, but these errors were encountered: