Skip to content

Commit

Permalink
don't print temp file names
Browse files Browse the repository at this point in the history
  • Loading branch information
Wisser committed Aug 11, 2023
1 parent e6cb31a commit 15b7d95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/gui/net/sf/jailer/ui/ExtractionModelFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -1330,7 +1330,7 @@ public void openExportDialog(boolean checkRI, final Runnable onDataModelUpdate,
tmpFileName = tmpF;
if (tmpFileName != null) {
try {
SubsettingEngine.registerTmpURL(new File(tmpFileName).toURI().toURL(), extractionModelEditor.extractionModelFile == null? null : new File(extractionModelEditor.extractionModelFile).getAbsolutePath());
SubsettingEngine.registerTmpURL(new File(tmpFileName).toURI().toURL(), extractionModelEditor.extractionModelFile == null? null : Configuration.getInstance().isTempFile(new File(extractionModelEditor.extractionModelFile))? null : new File(extractionModelEditor.extractionModelFile).getAbsolutePath());
} catch (Exception e) {
LogUtil.warn(e);
}
Expand Down

0 comments on commit 15b7d95

Please sign in to comment.