Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2018-05-09 19:54:37 +0000
committerAlexander Kurtakov2018-05-09 19:55:15 +0000
commit09a5c2515a6f63ae88fd09cd05f2f5d532d4b459 (patch)
tree403289ae06eebc11ffe273902346ff573190fdd5
parent7477b4b9b83925860142a45e2529b8073229209a (diff)
downloadorg.eclipse.linuxtools-09a5c2515a6f63ae88fd09cd05f2f5d532d4b459.tar.gz
org.eclipse.linuxtools-09a5c2515a6f63ae88fd09cd05f2f5d532d4b459.tar.xz
org.eclipse.linuxtools-09a5c2515a6f63ae88fd09cd05f2f5d532d4b459.zip
Remove useless throws declarations in docker tests.
Change-Id: I72947cf435034e137be2f7ec1fe7f37165fb1dcf Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/122378
-rw-r--r--containers/org.eclipse.linuxtools.docker.ui.tests/src/org/eclipse/linuxtools/internal/docker/ui/views/DockerExplorerViewSWTBotTest.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/containers/org.eclipse.linuxtools.docker.ui.tests/src/org/eclipse/linuxtools/internal/docker/ui/views/DockerExplorerViewSWTBotTest.java b/containers/org.eclipse.linuxtools.docker.ui.tests/src/org/eclipse/linuxtools/internal/docker/ui/views/DockerExplorerViewSWTBotTest.java
index 3051addeac..af34a96d10 100644
--- a/containers/org.eclipse.linuxtools.docker.ui.tests/src/org/eclipse/linuxtools/internal/docker/ui/views/DockerExplorerViewSWTBotTest.java
+++ b/containers/org.eclipse.linuxtools.docker.ui.tests/src/org/eclipse/linuxtools/internal/docker/ui/views/DockerExplorerViewSWTBotTest.java
@@ -1,5 +1,6 @@
/*******************************************************************************
- * Copyright (c) 2015 Red Hat.
+ * Copyright (c) 2015, 2018 Red Hat.
+ *
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -631,7 +632,7 @@ public class DockerExplorerViewSWTBotTest {
}
@Test
- public void shouldRemoveAllConnectionsSimultaneously() throws DockerException, InterruptedException {
+ public void shouldRemoveAllConnectionsSimultaneously() {
// given
final DockerClient client = MockDockerClientFactory.build();
final DockerConnection dockerConnection1 = MockDockerConnectionFactory.from("Test1", client)

Back to the top