Merge branch 'jetty-10.0.x' into jetty-10.0.x-update-plexus-utils-4.0.0
This commit is contained in:
commit
0c1ea6fe94
|
@ -148,14 +148,14 @@ public abstract class SelectorManager extends ContainerLifeCycle implements Dump
|
||||||
public int getTotalKeys()
|
public int getTotalKeys()
|
||||||
{
|
{
|
||||||
int keys = 0;
|
int keys = 0;
|
||||||
for (final ManagedSelector selector : _selectors)
|
for (ManagedSelector selector : _selectors)
|
||||||
{
|
{
|
||||||
keys += selector.getTotalKeys();
|
if (selector != null)
|
||||||
|
keys += selector.getTotalKeys();
|
||||||
}
|
}
|
||||||
return keys;
|
return keys;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return the number of selectors in use
|
* @return the number of selectors in use
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue