Skip to content

Commit

Permalink
removed obsolete parameters. issue #2246
Browse files Browse the repository at this point in the history
  • Loading branch information
j-dimension committed Aug 27, 2024
1 parent 51de381 commit c2a6ff9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,7 @@ public void finishedEvent() {
try {
ArchiveFileBean exportCase=(ArchiveFileBean)this.data.get("export.case");
byte[] content = FileUtils.readFile(new File(resultFile));
String newName = FileUtils.getNewFileName(exportCase, new File(resultFile).getName(), false, new Date(), true, EditorsRegistry.getInstance().getMainWindow(), "PDF-Export zur Akte speichern");
String newName = FileUtils.getNewFileName(exportCase, new File(resultFile).getName(), new Date(), true, EditorsRegistry.getInstance().getMainWindow(), "PDF-Export zur Akte speichern");
if (newName == null || "".equalsIgnoreCase(newName)) {
return;
}
Expand Down

0 comments on commit c2a6ff9

Please sign in to comment.