remove IOException from Extension.close() interface.

Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This commit is contained in:
Lachlan Roberts 2022-06-09 08:12:06 +10:00
parent f4c54f4571
commit 3901159093
1 changed files with 1 additions and 2 deletions

View File

@ -14,7 +14,6 @@
package org.eclipse.jetty.websocket.core;
import java.io.Closeable;
import java.io.IOException;
/**
* Interface for WebSocket Extensions.
@ -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()
{
}