1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-18 17:34:49 +02:00

SMACK-459 actually add the defaultIdentity to the result of getIdentities()

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@13796 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Florian Schmaus 2013-10-31 20:24:02 +00:00 committed by flow
parent addf9ea6cd
commit 6fa2cbee68

View file

@ -187,7 +187,10 @@ public class ServiceDiscoveryManager {
* @return * @return
*/ */
public Set<DiscoverInfo.Identity> getIdentities() { public Set<DiscoverInfo.Identity> getIdentities() {
return Collections.unmodifiableSet(identities); Set<Identity> res = new HashSet<Identity>(identities);
// Add the default identity that must exist
res.add(defaultIdentity);
return res;
} }
/** /**