From a86cb5a5d3c9632e619df9815462c227021f0380 Mon Sep 17 00:00:00 2001 From: Matt Tucker Date: Sat, 24 Mar 2007 20:49:57 +0000 Subject: [PATCH] Removing method (doesn't help with anything). git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@7687 b35dd754-fafc-0310-a699-88a17e54d16e --- source/org/jivesoftware/smack/XMPPConnection.java | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/source/org/jivesoftware/smack/XMPPConnection.java b/source/org/jivesoftware/smack/XMPPConnection.java index 4c67fdf4c..0044d66c2 100644 --- a/source/org/jivesoftware/smack/XMPPConnection.java +++ b/source/org/jivesoftware/smack/XMPPConnection.java @@ -532,19 +532,6 @@ public class XMPPConnection { return isUsingTLS(); } - /** - * Returns the local network address of the socket used to connect to the server, or - * null 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. *