Hotfix (client don't compile) after pr 2762 merged to master

There is no ActionListener in import block, so mage-client in current state can't be compiled. Changed ActionListener  to lambda
This commit is contained in:
vraskulin 2017-01-11 11:49:19 +03:00
parent 1c4bf298eb
commit cb1b507076

View file

@ -1023,11 +1023,7 @@ public class DragCardGrid extends JPanel implements DragCardSource, DragCardTarg
// Bling button - aka Add in a premium 'JR', 'MBP', 'CS' etc card
blingButton.setToolTipText("Bling your deck! Select the original and added cards by selecting 'Multiples' in the selection options");
blingButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent evt) {
blingDeck();
}
});
blingButton.addActionListener(evt -> blingDeck());
// Filter popup
filterPopup = new JPopupMenu();