Skip to content

Commit

Permalink
Fix board removal
Browse files Browse the repository at this point in the history
  • Loading branch information
wingy committed Nov 4, 2014
1 parent ae27e0f commit adc5d22
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public void onDismiss(ListView listView, int[] reverseSortedPositions) {
for (int position : reverseSortedPositions) {
if (position >= 0 && position < adapter.getCount()) {
Board b = adapter.getItem(position);
boardManager.removeBoard(b.key);
boardManager.removeBoard(b.value);
adapter.remove(b);
}
}
Expand Down

0 comments on commit adc5d22

Please sign in to comment.