Remove unnecessary cast to DefaultSessionIdManager in Session.invalidate
This commit is contained in:
parent
dfdd324bc8
commit
2d6ec3aee2
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue