1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2025-09-10 18:59:41 +02:00

Phase 1 of large refactoring. Removing dead code, bug fixes, updates to JDK 1.5.

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@4511 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Matt Tucker 2006-07-17 08:39:08 +00:00 committed by matt
parent 1a08715f67
commit bbbfe09c31
62 changed files with 291 additions and 3524 deletions

View file

@ -37,7 +37,7 @@ public class RosterGroup {
private String name;
private XMPPConnection connection;
private List entries;
private List<RosterEntry> entries;
/**
* Creates a new roster group instance.
@ -48,7 +48,7 @@ public class RosterGroup {
RosterGroup(String name, XMPPConnection connection) {
this.name = name;
this.connection = connection;
entries = new ArrayList();
entries = new ArrayList<RosterEntry>();
}
/**
@ -95,13 +95,13 @@ public class RosterGroup {
}
/**
* Returns an iterator for the entries in the group.
* Returns an unmodifiable collection of all entries in the group.
*
* @return an iterator for the entries in the group.
* @return all entries in the group.
*/
public Iterator getEntries() {
public Collection<RosterEntry> getEntries() {
synchronized (entries) {
return Collections.unmodifiableList(new ArrayList(entries)).iterator();
return Collections.unmodifiableList(new ArrayList<RosterEntry>(entries));
}
}