Skip to content

Commit 04a9b94

Browse files
authored
Merge pull request #48 from tomaswolf/2.2.X
Binary compatibility with 2.0.X
2 parents 8c56f4c + eab9019 commit 04a9b94

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

mina-core/src/main/java/org/apache/mina/core/service/IoHandler.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -121,5 +121,7 @@ public interface IoHandler {
121121
* @param event The event to process
122122
* @throws Exception If we get an exception while processing the event
123123
*/
124-
void event(IoSession session, FilterEvent event) throws Exception;
124+
default void event(IoSession session, FilterEvent event) throws Exception {
125+
// Nothing
126+
}
125127
}

0 commit comments

Comments
 (0)