Skip to content

Commit

Permalink
Merge pull request #48 from tomaswolf/2.2.X
Browse files Browse the repository at this point in the history
Binary compatibility with 2.0.X
  • Loading branch information
elecharny authored Mar 3, 2025
2 parents 8c56f4c + eab9019 commit 04a9b94
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,5 +121,7 @@ public interface IoHandler {
* @param event The event to process
* @throws Exception If we get an exception while processing the event
*/
void event(IoSession session, FilterEvent event) throws Exception;
default void event(IoSession session, FilterEvent event) throws Exception {
// Nothing
}
}

0 comments on commit 04a9b94

Please sign in to comment.