You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (JOptionPane.showConfirmDialog(this, "The output directory " + dir.toAbsolutePath().toString() + " does not exist. Create it?", "Confirm", JOptionPane.YES_NO_OPTION) == JOptionPane.YES_OPTION) {
116
+
if (JOptionPane.showConfirmDialog(this, "The output directory " + dir.toAbsolutePath() + " does not exist. Create it?", "Confirm", JOptionPane.YES_NO_OPTION) == JOptionPane.YES_OPTION) {
if (!(Files.exists(confFile) && Files.isReadable(confFile))) {
139
-
JOptionPane.showMessageDialog(this, "The selected database configuration file " + confFile.toAbsolutePath().toString() + " does not exist or is not readable.", "Configuration Error", JOptionPane.ERROR_MESSAGE);
139
+
JOptionPane.showMessageDialog(this, "The selected database configuration file " + confFile.toAbsolutePath() + " does not exist or is not readable.", "Configuration Error", JOptionPane.ERROR_MESSAGE);
140
140
returnfalse;
141
141
}
142
142
@@ -494,7 +494,7 @@ public void error(final String message, final Throwable exception) {
494
494
495
495
finallongend = System.currentTimeMillis();
496
496
497
-
displayMessage("Export to " + file.toAbsolutePath().toString() + " completed successfully.");
497
+
displayMessage("Export to " + file.toAbsolutePath() + " completed successfully.");
498
498
displayMessage("Export took " + (end - start) + "ms.");
0 commit comments