Improves a lot of comments and variable names

This commit is contained in:
2020-08-19 21:24:37 +02:00
parent d06cc66f31
commit 83f8834530
6 changed files with 67 additions and 66 deletions

View File

@ -54,11 +54,6 @@ public abstract class MessageHandler implements GUI {
* @param paneType <p>The type of the pane</p>
*/
private void showJOptionPane(String title, String message, int paneType) {
JOptionPane.showMessageDialog(
null,
message,
title,
paneType
);
JOptionPane.showMessageDialog(null, message, title, paneType);
}
}