Skip to content

Commit

Permalink
Modifica alla servlet Expire
Browse files Browse the repository at this point in the history
  • Loading branch information
mspasiano committed Dec 1, 2011
1 parent 5e71f17 commit 560b75e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -49,7 +49,7 @@ protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws S
}
protected void processRequest(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
String invalidateSession = req.getParameter("sessionID");
if (invalidateSession != null){
if (invalidateSession != null && sessionObjects.get(invalidateSession) != null){
sessionObjects.get(invalidateSession).invalidate();
}else{
int indice = 0;
Expand Down

0 comments on commit 560b75e

Please sign in to comment.