removed Card parameter from CardPicturePanel ctor (there was passed null in 4 cases out of 5)

This commit is contained in:
Maxmtg
2013-02-24 08:26:29 +00:00
parent 4ba9901958
commit 962a3be929
6 changed files with 8 additions and 8 deletions

View File

@@ -58,7 +58,7 @@ public class CardViewer extends JPanel {
this.list = Collections.unmodifiableList(list);
this.jList = new JList(new ChooserListModel());
this.detail = new CardDetailPanel(null);
this.picture = new CardPicturePanel(null);
this.picture = new CardPicturePanel();
this.add(new JScrollPane(this.jList));
this.add(this.picture);