Skip to content

Commit abcfdd6

Browse files
committed
Fix bug related with addAll method in TvShowCollection
1 parent 8ae1369 commit abcfdd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/com/github/pedrovgs/effectiveandroidui/ui/renderer/tvshow/TvShowCollection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public TvShowCollection(Collection<TvShow> tvShows) {
6565
}
6666

6767
@Override public void removeAll(Collection<TvShow> tvShows) {
68-
this.tvShows.addAll(tvShows);
68+
this.tvShows.removeAll(tvShows);
6969
}
7070

7171
public void clear() {

0 commit comments

Comments
 (0)