Removes a couple of System.out.println() uses.

cusax-fix
Lyubomir Marinov 12 years ago
parent d82d7b43e5
commit 10750b3efd

@ -382,8 +382,6 @@ private void callPropertyChange(PropertyChangeEvent event)
= ((MediaDeviceWrapper) newDevice) = ((MediaDeviceWrapper) newDevice)
.getWrappedDevice(); .getWrappedDevice();
} }
if (MediaAwareCall.DEFAULT_DEVICE.equals(propertyName))
System.err.println(CallPeerMediaHandler.class.getName() + ".callPropertyChange: oldDevice= " + oldDevice + "; newDevice= " + newDevice + "; newWrappedDevice= " + newWrappedDevice);
if (oldDevice != newWrappedDevice) if (oldDevice != newWrappedDevice)
stream.setDevice(newDevice); stream.setDevice(newDevice);
} }

@ -420,7 +420,7 @@ void setDevice(MediaType mediaType, MediaDevice device)
oldValue = ((MediaDeviceWrapper) mixer).getWrappedDevice(); oldValue = ((MediaDeviceWrapper) mixer).getWrappedDevice();
MediaDevice newValue = devices[mediaTypeIndex] = device; MediaDevice newValue = devices[mediaTypeIndex] = device;
System.err.println(MediaAwareCallConference.class.getName() + ".setDevice: oldValue= " + oldValue + "; newValue= " + newValue);
if (oldValue != newValue) if (oldValue != newValue)
{ {
mixers[mediaTypeIndex] = null; mixers[mediaTypeIndex] = null;

Loading…
Cancel
Save