Skip to content
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

Simplify adding elements to Collections #4006

Merged
merged 2 commits into from Jan 3, 2024

Conversation

wborn
Copy link
Member

@wborn wborn commented Jan 3, 2024

This optimizes and simplifies the code that adds elements to Collections.

This optimizes and simplifies the code that adds elements to Collections.

Signed-off-by: Wouter Born <github@maindrain.net>
@wborn wborn requested a review from a team as a code owner January 3, 2024 10:15
for (ConfigDescription configDescription : configMap.values()) {
configDescriptions.add(configDescription);
}
configDescriptions.addAll(configMap.values());
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
configDescriptions.addAll(configMap.values());
Collection<ConfigDescription> configDescriptions = new ArrayList<>(configMap.values());

Signed-off-by: Wouter Born <github@maindrain.net>
@J-N-K J-N-K merged commit 81a91ee into openhab:main Jan 3, 2024
3 checks passed
@J-N-K J-N-K added the enhancement An enhancement or new feature of the Core label Jan 3, 2024
@J-N-K J-N-K added this to the 4.2 milestone Jan 3, 2024
@wborn wborn deleted the simplify-adding-collection-elements branch January 3, 2024 13:52
cipianpascu pushed a commit to cipianpascu/openhab-core that referenced this pull request Jan 17, 2024
* Simplify adding elements to Collections

This optimizes and simplifies the code that adds elements to Collections.

Signed-off-by: Wouter Born <github@maindrain.net>
Signed-off-by: Ciprian Pascu <contact@ciprianpascu.ro>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement An enhancement or new feature of the Core
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants