Skip to content

Commit

Permalink
Added missing constructor parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
rtreffer committed Apr 28, 2010
1 parent 1404902 commit 011822b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/org/jivesoftware/smack/Roster.java
Expand Up @@ -293,7 +293,7 @@ private void insertRosterItems(List<RosterPacket.Item> items){
private void insertRosterItem(RosterPacket.Item item, Collection<String> addedEntries,
Collection<String> updatedEntries, Collection<String> deletedEntries){
RosterEntry entry = new RosterEntry(item.getUser(), item.getName(),
item.getItemType(), item.getItemStatus(), connection);
item.getItemType(), item.getItemStatus(), this, connection);

// If the packet is of the type REMOVE then remove the entry
if (RosterPacket.ItemType.remove.equals(item.getItemType())) {
Expand Down

0 comments on commit 011822b

Please sign in to comment.