Removing method (doesn't help with anything).

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@7687 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Matt Tucker 2007-03-24 20:49:57 +00:00 committed by matt
parent bb37a25172
commit a86cb5a5d3
1 changed files with 0 additions and 13 deletions

View File

@ -532,19 +532,6 @@ public class XMPPConnection {
return isUsingTLS();
}
/**
* Returns the local network address of the socket used to connect to the server, or
* <tt>null</tt> if not currently connected to the server.
*
* @return the local address for the socket used to connect to the server.
*/
public InetAddress getLocalNetworkAddress() {
if (socket == null || !socket.isConnected()) {
return null;
}
return socket.getLocalAddress();
}
/**
* Returns true if currently authenticated by successfully calling the login method.
*