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

Issue #9947 - check that each selector inside of _selectors isn't null before calculating #totalKeys #9962

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions jetty-io/src/main/java/org/eclipse/jetty/io/SelectorManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -147,14 +147,13 @@ protected void execute(Runnable task)
@ManagedAttribute(value = "Total number of keys in all selectors", readonly = true)
public int getTotalKeys()
{
if (_selectors == null || _selectors.length == 0)
{
return 0;
}
int keys = 0;
for (final ManagedSelector selector : _selectors)
for (ManagedSelector selector : _selectors)
{
keys += selector.getTotalKeys();
if (selector != null)
{
Copy link
Contributor

Choose a reason for hiding this comment

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

Please drop the braces for single line statements.

Also, there is an extra new line at the end of this method, please remove that too.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done

keys += selector.getTotalKeys();
}
}
return keys;
}
Expand Down