You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For instance places where we've used String.format("%s:%s:%s", groupId, artifactId, version); can be replaced with a small StringBuilder to handle the formatting, or a simple "+" operator, as some benchmarking using JMH suggests that this would be more efficient.
If it's okay, I can raise a PR to handle this everywhere in the repository.
The text was updated successfully, but these errors were encountered:
For instance places where we've used String.format("%s:%s:%s", groupId, artifactId, version); can be replaced with a small StringBuilder to handle the formatting, or a simple "+" operator, as some benchmarking using JMH suggests that this would be more efficient.
If it's okay, I can raise a PR to handle this everywhere in the repository.
The text was updated successfully, but these errors were encountered: