if (allBoards.size() == 0) {
return;
}
Collections.sort(allBoards);
final BoardsChooser chooser = new BoardsChooser(this, allBoards);
chooser.setLocationRelativeTo(this);
final List<Board> chosenBoards = chooser.runDialog();
if (chosenBoards == null || chosenBoards.size() == 0) { // nothing chosed or cancelled
return;
}
for (int i = 0; i < chosenBoards.size(); i++) {