mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-23 14:52:06 +01:00
Syntax fix.
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@4533 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
f520dfe02e
commit
494cec8f9a
1 changed files with 1 additions and 1 deletions
|
@ -314,7 +314,7 @@ public class Roster {
|
||||||
public Collection<RosterEntry> getEntries() {
|
public Collection<RosterEntry> getEntries() {
|
||||||
Set<RosterEntry> allEntries = new HashSet<RosterEntry>();
|
Set<RosterEntry> allEntries = new HashSet<RosterEntry>();
|
||||||
// Loop through all roster groups and add their entries to the answer
|
// Loop through all roster groups and add their entries to the answer
|
||||||
for (RosterGroup rosterGroup: getGroups()) {
|
for (RosterGroup rosterGroup : getGroups()) {
|
||||||
allEntries.addAll(rosterGroup.getEntries());
|
allEntries.addAll(rosterGroup.getEntries());
|
||||||
}
|
}
|
||||||
// Add the roster unfiled entries to the answer
|
// Add the roster unfiled entries to the answer
|
||||||
|
|
Loading…
Reference in a new issue