Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,10 @@ public boolean add(MapEntry mapEntry)
@Override
public boolean addAll(Collection<? extends MapEntry> c)
{
throw new UnsupportedOperationException("Map collection doesn't support this operation.");
if (c == null)
throw new NullPointerException("Passed in collection is null.");

return _mapCollection.addAll(c);
}

@Override
Expand Down