diff --git a/lib/installer-exclude/libjitsi.jar b/lib/installer-exclude/libjitsi.jar index 83cde65d7..e8ca597e9 100644 Binary files a/lib/installer-exclude/libjitsi.jar and b/lib/installer-exclude/libjitsi.jar differ diff --git a/src/net/java/sip/communicator/impl/neomedia/DeviceConfigurationComboBoxModel.java b/src/net/java/sip/communicator/impl/neomedia/DeviceConfigurationComboBoxModel.java index 415c694ff..28346653c 100644 --- a/src/net/java/sip/communicator/impl/neomedia/DeviceConfigurationComboBoxModel.java +++ b/src/net/java/sip/communicator/impl/neomedia/DeviceConfigurationComboBoxModel.java @@ -29,8 +29,7 @@ */ public class DeviceConfigurationComboBoxModel implements ComboBoxModel, - PropertyChangeListener, - HierarchyListener + PropertyChangeListener { /** * Encapsulates a CaptureDeviceInfo for the purposes of its display @@ -186,8 +185,6 @@ public DeviceConfigurationComboBoxModel( || type == AUDIO_PLAYBACK) { deviceConfiguration.addPropertyChangeListener(this); - - parent.addHierarchyListener(this); } } @@ -466,18 +463,4 @@ public void run() fireContentsChanged(0, getSize() - 1); } } - - /** - * We listen when the component was hidden in order to release resources, - * remove listener to clean this instance. - * @param e the event. - */ - public void hierarchyChanged(HierarchyEvent e) - { - if (((e.getChangeFlags() & HierarchyEvent.SHOWING_CHANGED) != 0) - && !parent.isShowing()) - { - deviceConfiguration.removePropertyChangeListener(this); - } - } }