ItEr43S09ImplantacionAplicacionItEr42S13: Fixing bug. Avoding NullPointerException.
This commit is contained in:
parent
a926da8688
commit
a83a02d925
1 changed files with 2 additions and 1 deletions
|
|
@ -163,7 +163,8 @@ public class CallbackServlet extends HttpServlet {
|
|||
}
|
||||
|
||||
private IServletRequestHandler handlerFor(String callbackId) {
|
||||
return handlersCallbacks.get(callbackId).handler;
|
||||
HandlerWithRegisterTime h = handlersCallbacks.get(callbackId);
|
||||
return h != null ? h.handler : null;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue