Skip to content

Commit

Permalink
Add @inheritdoc to sessionIdChanged method
Browse files Browse the repository at this point in the history
Closes gh-16211
  • Loading branch information
12OneTwo12 authored and jzheaux committed Dec 5, 2024
1 parent 96b3c77 commit d39e329
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ public void sessionDestroyed(HttpSessionEvent event) {
extracted(event.getSession(), new HttpSessionDestroyedEvent(event.getSession()));
}

/**
* @inheritDoc
*/
@Override
public void sessionIdChanged(HttpSessionEvent event, String oldSessionId) {
extracted(event.getSession(), new HttpSessionIdChangedEvent(event.getSession(), oldSessionId));
Expand Down

0 comments on commit d39e329

Please sign in to comment.