Add @inheritDoc to sessionIdChanged method

Closes gh-16211
This commit is contained in:
12OneTwo12 2024-12-05 09:26:46 +09:00 committed by Josh Cummings
parent 96b3c77ce0
commit d39e329234
1 changed files with 3 additions and 0 deletions

View File

@ -74,6 +74,9 @@ public class HttpSessionEventPublisher implements HttpSessionListener, HttpSessi
extracted(event.getSession(), new HttpSessionDestroyedEvent(event.getSession()));
}
/**
* @inheritDoc
*/
@Override
public void sessionIdChanged(HttpSessionEvent event, String oldSessionId) {
extracted(event.getSession(), new HttpSessionIdChangedEvent(event.getSession(), oldSessionId));