Removed MessageBox displayed after deck was generated. removed splash screen closing (caused exception time to time). updated plugin.

This commit is contained in:
magenoxx 2010-11-30 21:04:53 +00:00
parent 30b341f7d9
commit 6d589abe6d
3 changed files with 1 additions and 4 deletions

View file

@ -510,9 +510,6 @@ public class MageFrame extends javax.swing.JFrame {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
new MageFrame().setVisible(true);
if (splash != null) {
splash.close();
}
}
});
}

View file

@ -86,7 +86,7 @@ public class DeckGenerator {
tmp.createNewFile();
deck.setName("Generated-Deck-" + UUID.randomUUID());
deck.getDeckCardLists().save(tmp.getAbsolutePath());
JOptionPane.showMessageDialog(null, "Deck has been generated.");
//JOptionPane.showMessageDialog(null, "Deck has been generated.");
return tmp.getAbsolutePath();
} catch (Exception e) {
e.printStackTrace();