mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
Small fix.
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2023 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
848a1d725b
commit
7a78ab7aa4
1 changed files with 2 additions and 2 deletions
|
@ -77,7 +77,7 @@ public class PrivateDataManager {
|
|||
private static Map privateDataProviders = new Hashtable();
|
||||
|
||||
private XMPPConnection con;
|
||||
private String userID;
|
||||
private String user;
|
||||
|
||||
/**
|
||||
* 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) {
|
||||
this.con = con;
|
||||
this.userID = con.getUsername() + "@" + con.getHost();
|
||||
this.user = con.getUser();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue