Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Coulon2015-11-30 13:54:06 +0000
committerJeff Johnston2015-12-02 22:19:03 +0000
commit3e61fb1c4a21f7f9db6d5e50624752f57c02be17 (patch)
tree7ad13cd4ed9213ca50ce1fbc47914d8503470ec6 /containers/org.eclipse.linuxtools.docker.core/src/org
parentbee8d154892687f232ea337576288b31690d96e0 (diff)
downloadorg.eclipse.linuxtools-3e61fb1c4a21f7f9db6d5e50624752f57c02be17.tar.gz
org.eclipse.linuxtools-3e61fb1c4a21f7f9db6d5e50624752f57c02be17.tar.xz
org.eclipse.linuxtools-3e61fb1c4a21f7f9db6d5e50624752f57c02be17.zip
Bug 482610 - Images and Containers View sometimes doesn't reflect connection state
Setting the selection to the added connection (when adding a new one) or to the first remaining connection (or null) when removing one. Docker Images view and Docker Containers view react to selection change, including when new selection is empty. Change-Id: I0607db5cf244b42487739d06df02a254a8c35e92 Signed-off-by: Xavier Coulon <xcoulon@redhat.com> Reviewed-on: https://git.eclipse.org/r/61566 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
Diffstat (limited to 'containers/org.eclipse.linuxtools.docker.core/src/org')
-rw-r--r--containers/org.eclipse.linuxtools.docker.core/src/org/eclipse/linuxtools/docker/core/DockerConnectionManager.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/containers/org.eclipse.linuxtools.docker.core/src/org/eclipse/linuxtools/docker/core/DockerConnectionManager.java b/containers/org.eclipse.linuxtools.docker.core/src/org/eclipse/linuxtools/docker/core/DockerConnectionManager.java
index 1c1d7cb07d..11fa967a04 100644
--- a/containers/org.eclipse.linuxtools.docker.core/src/org/eclipse/linuxtools/docker/core/DockerConnectionManager.java
+++ b/containers/org.eclipse.linuxtools.docker.core/src/org/eclipse/linuxtools/docker/core/DockerConnectionManager.java
@@ -151,7 +151,6 @@ public class DockerConnectionManager {
* instead
*/
@Deprecated
- @SuppressWarnings("deprecation")
public void notifyListeners(int type) {
if (connectionManagerListeners != null) {
Object[] listeners = connectionManagerListeners.getListeners();

Back to the top