Skip to content

Commit

Permalink
corrected a var name
Browse files Browse the repository at this point in the history
  • Loading branch information
mung3r committed Aug 31, 2014
1 parent 3a224c9 commit fc308f4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void addMapper(EventMapper mapper)

public Collection<DropEvent> createEvents(final Event event)
{
Collection<DropEvent> emptySet = Collections.emptyList();
Collection<DropEvent> emptyList = Collections.emptyList();

EventMapper mapper = Iterables.find(mappers, new Predicate<EventMapper>() {
@Override
Expand All @@ -57,6 +57,6 @@ public boolean apply(EventMapper mapper) {
}
});

return mapper != null ? mapper.mapEvent(event) : emptySet;
return mapper != null ? mapper.mapEvent(event) : emptyList;
}
}

0 comments on commit fc308f4

Please sign in to comment.