Issue #2376 - Applying recommended scope changes

This commit is contained in:
Joakim Erdfelt 2018-04-24 16:30:01 -05:00
parent cf5b473571
commit 1c0bbae9cc

View File

@ -329,7 +329,11 @@ public class WebSocketServerFactory extends ContainerLifeCycle implements WebSoc
super.doStart();
}
private DecoratedObjectFactory findDecorator()
/**
* Attempt to find the DecoratedObjectFactory that should be used.
* @return the DecoratedObjectFactory that should be used. (never null)
*/
protected DecoratedObjectFactory findDecorator()
{
DecoratedObjectFactory objectFactory;
@ -350,9 +354,9 @@ public class WebSocketServerFactory extends ContainerLifeCycle implements WebSoc
/**
* Attempt to find the Executor that should be used.
* @return the Executor that should be used.
* @return the Executor that should be used. (never null)
*/
private Executor findExecutor()
protected Executor findExecutor()
{
if(context != null)
{