Small fix.

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2023 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Matt Tucker 2003-08-12 19:33:52 +00:00 committed by mtucker
parent 848a1d725b
commit 7a78ab7aa4
1 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ public class PrivateDataManager {
private static Map privateDataProviders = new Hashtable(); private static Map privateDataProviders = new Hashtable();
private XMPPConnection con; private XMPPConnection con;
private String userID; private String user;
/** /**
* Returns the private data provider registered to the specified XML element name and namespace. * Returns the private data provider registered to the specified XML element name and namespace.
@ -128,7 +128,7 @@ public class PrivateDataManager {
*/ */
public PrivateDataManager(XMPPConnection con) { public PrivateDataManager(XMPPConnection con) {
this.con = con; this.con = con;
this.userID = con.getUsername() + "@" + con.getHost(); this.user = con.getUser();
} }
/** /**