mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2025-09-12 03:39:42 +02:00
RosterListener now uses generics.
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@7069 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
877afcd3ba
commit
274ef0cd51
2 changed files with 5 additions and 5 deletions
|
@ -519,8 +519,8 @@ public class Roster implements ConnectionListener {
|
|||
* @param updatedEntries the collection of address of the updated contacts.
|
||||
* @param deletedEntries the collection of address of the deleted contacts.
|
||||
*/
|
||||
private void fireRosterChangedEvent(Collection addedEntries, Collection updatedEntries,
|
||||
Collection deletedEntries)
|
||||
private void fireRosterChangedEvent(Collection<String> addedEntries, Collection<String> updatedEntries,
|
||||
Collection<String> deletedEntries)
|
||||
{
|
||||
for (RosterListener listener : rosterListeners) {
|
||||
if (!addedEntries.isEmpty()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue