GUAC-798: Call init() of superclass in WebSocket implementations.

This commit is contained in:
Michael Jumper
2014-10-09 11:15:06 -07:00
parent a792e6f271
commit 01b366bc19
2 changed files with 2 additions and 0 deletions

View File

@@ -78,6 +78,7 @@ public abstract class AuthenticatingWebSocketServlet extends WebSocketServlet {
@Override @Override
public void init() throws ServletException { public void init() throws ServletException {
super.init();
auth_servlet.init(); auth_servlet.init();
} }

View File

@@ -79,6 +79,7 @@ public abstract class AuthenticatingWebSocketServlet extends WebSocketServlet {
@Override @Override
public void init() throws ServletException { public void init() throws ServletException {
super.init();
auth_servlet.init(); auth_servlet.init();
} }