Skip to content

Commit

Permalink
reversed small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
koxx12-dev committed May 26, 2021
1 parent 2ab1741 commit 2e3e533
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ public void mouseReleased(MouseEvent e) {

public static Boolean Warning(final JSONArray array) throws MalformedURLException {

String arrrayJoined = ("<html><div style='text-align: center;'>" + array.join("<br>") + "</div></html>").replaceAll("\n","<br>");
String arrrayJoined = "<html><div style='text-align: center;'>" + array.join("<br>") + "</div></html>";
boolean val = false;

int option = JOptionPane.showConfirmDialog(null, arrrayJoined.replaceAll("\"", ""), "Warning", JOptionPane.YES_NO_OPTION, JOptionPane.WARNING_MESSAGE);
Expand Down

0 comments on commit 2e3e533

Please sign in to comment.