Skip to content

Commit

Permalink
remove IOException from Extension.close() interface.
Browse files Browse the repository at this point in the history
Signed-off-by: Lachlan Roberts <[email protected]>
  • Loading branch information
lachlan-roberts committed Jun 8, 2022
1 parent f4c54f4 commit 3901159
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
package org.eclipse.jetty.websocket.core;

import java.io.Closeable;
import java.io.IOException;

/**
* Interface for WebSocket Extensions.
Expand All @@ -29,7 +28,7 @@ public interface Extension extends IncomingFrames, OutgoingFrames, Closeable
/**
* Used to clean up any resources after connection close.
*/
default void close() throws IOException
default void close()
{
}

Expand Down

0 comments on commit 3901159

Please sign in to comment.