This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 26383aed74e302b5669226d67ac2378804a31971 Author: Otavio R. Piske <[email protected]> AuthorDate: Sun Mar 13 14:33:17 2022 +0100 CAMEL-17763: cleaned up unused exceptions in camel-atmosphere-websocket --- .../org/apache/camel/component/atmosphere/websocket/TestClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-atmosphere-websocket/src/test/java/org/apache/camel/component/atmosphere/websocket/TestClient.java b/components/camel-atmosphere-websocket/src/test/java/org/apache/camel/component/atmosphere/websocket/TestClient.java index 988ad46..aa72728 100644 --- a/components/camel-atmosphere-websocket/src/test/java/org/apache/camel/component/atmosphere/websocket/TestClient.java +++ b/components/camel-atmosphere-websocket/src/test/java/org/apache/camel/component/atmosphere/websocket/TestClient.java @@ -61,7 +61,7 @@ public class TestClient { this.url = url; } - public void connect() throws InterruptedException, ExecutionException, IOException { + public void connect() throws InterruptedException, ExecutionException { websocket = client.prepareGet(url).execute( new WebSocketUpgradeHandler.Builder() .addWebSocketListener(new TestWebSocketListener()).build())
