Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Alexander Kuppe2013-07-12 12:17:18 +0000
committerMarkus Alexander Kuppe2013-07-12 12:17:18 +0000
commit3a8252a1911015e66fa90e3d885d472bfa838744 (patch)
treeb2573f5c10692b83120806b8b8a9742cfcf59eb2 /protocols/bundles/org.jivesoftware.smack/src/org/jivesoftware/smackx/RemoteRosterEntry.java
parent449e90b72304873f71c7e36a960468cbc9001ad1 (diff)
downloadorg.eclipse.ecf-3a8252a1911015e66fa90e3d885d472bfa838744.tar.gz
org.eclipse.ecf-3a8252a1911015e66fa90e3d885d472bfa838744.tar.xz
org.eclipse.ecf-3a8252a1911015e66fa90e3d885d472bfa838744.zip
Bug 411797 - [xmpp] org.eclipse.ecf.core.ContainerConnectException: Login attempt failed with ejabberd server
https://bugs.eclipse.org/411797
Diffstat (limited to 'protocols/bundles/org.jivesoftware.smack/src/org/jivesoftware/smackx/RemoteRosterEntry.java')
-rw-r--r--protocols/bundles/org.jivesoftware.smack/src/org/jivesoftware/smackx/RemoteRosterEntry.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/bundles/org.jivesoftware.smack/src/org/jivesoftware/smackx/RemoteRosterEntry.java b/protocols/bundles/org.jivesoftware.smack/src/org/jivesoftware/smackx/RemoteRosterEntry.java
index acf0b0b56..8665861df 100644
--- a/protocols/bundles/org.jivesoftware.smack/src/org/jivesoftware/smackx/RemoteRosterEntry.java
+++ b/protocols/bundles/org.jivesoftware.smack/src/org/jivesoftware/smackx/RemoteRosterEntry.java
@@ -1,7 +1,7 @@
/**
* $RCSfile$
- * $Revision$
- * $Date$
+ * $Revision: 13325 $
+ * $Date: 2012-10-26 03:47:55 -0700 (Fri, 26 Oct 2012) $
*
* Copyright 2003-2007 Jive Software.
*
@@ -77,7 +77,7 @@ public class RemoteRosterEntry {
*
* @return an Iterator for the group names.
*/
- public Iterator getGroupNames() {
+ public Iterator<String> getGroupNames() {
synchronized (groupNames) {
return Collections.unmodifiableList(groupNames).iterator();
}

Back to the top