Skip to content

Commit

Permalink
Update Window.java
Browse files Browse the repository at this point in the history
  • Loading branch information
JorickPepin authored Dec 24, 2020
1 parent d182929 commit da034c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/recordsnbawiki/packVue/Window.java
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ private void displayESPNWarningMessage() {

int answer = JOptionPane.showOptionDialog(this, message, "Avertissement contenu ESPN", JOptionPane.DEFAULT_OPTION, JOptionPane.WARNING_MESSAGE, null, options, options[1]);

if (answer == 1 || answer == -1) { // the user clicks on OK or close the window
if (answer == 1 || answer == -1) { // the user clicks on OK or closes the window
controller.removeESPNContent();
}
}
Expand Down

0 comments on commit da034c8

Please sign in to comment.