Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
}
}