Remove unnecessary cast to DefaultSessionIdManager in Session.invalidate

This commit is contained in:
Jan Bartel 2016-11-03 14:25:30 +11:00
parent dfdd324bc8
commit 2d6ec3aee2
1 changed files with 1 additions and 1 deletions

View File

@ -859,7 +859,7 @@ public class Session implements SessionHandler.SessionIf
if (result)
{
//tell id mgr to remove session from all other contexts
((DefaultSessionIdManager)_handler.getSessionIdManager()).invalidateAll(_sessionData.getId());
_handler.getSessionIdManager().invalidateAll(_sessionData.getId());
}
}
catch (Exception e)