Remove unused code

cusax-fix
Ingo Bauersachs 14 years ago
parent fa54f57d98
commit 13fd1acffc

@ -92,13 +92,6 @@ public class ProtocolProviderServiceSipImpl
private final Hashtable<String, List<MethodProcessor>> methodProcessors =
new Hashtable<String, List<MethodProcessor>>();
/**
* The name of the property under which the user may specify the number of
* the port where they would prefer us to bind our sip socket.
*/
private static final String PREFERRED_SIP_PORT =
"net.java.sip.communicator.service.protocol.sip.PREFERRED_SIP_PORT";
/**
* The name of the property under which the user may specify the number of
* seconds that registrations take to expire.
@ -421,35 +414,6 @@ protected void initialize(String sipAddress,
if(!isProxyValidated)
initOutboundProxy(accountID, 0);
//init proxy port
int preferredSipPort = ListeningPoint.PORT_5060;
String proxyPortStr = SipActivator.getConfigurationService().
getString(PREFERRED_SIP_PORT);
if (proxyPortStr != null && proxyPortStr.length() > 0)
{
try
{
preferredSipPort = Integer.parseInt(proxyPortStr);
}
catch (NumberFormatException ex)
{
logger.error(
proxyPortStr
+ " is not a valid port value. Expected an integer"
, ex);
}
if (preferredSipPort > NetworkUtils.MAX_PORT_NUMBER)
{
logger.error(preferredSipPort + " is larger than "
+ NetworkUtils.MAX_PORT_NUMBER
+ " and does not "
+ "therefore represent a valid port number.");
}
}
if(sipStackSharing == null)
sipStackSharing = new SipStackSharing();

Loading…
Cancel
Save