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
1 changed files with 4 additions and 1 deletions

View File

@ -187,7 +187,10 @@ public class ServiceDiscoveryManager {
* @return
*/
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;
}
/**