Skip to content

Commit

Permalink
code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
j-dimension committed Oct 23, 2024
1 parent f0df521 commit d7f1e6f
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -727,8 +727,7 @@ public File getExportFolderName(ArchiveFileBean dto) {
afs = dto.getId();
}
afs = ServerStringUtils.removeSonderzeichen(afs);
File newDir = new File(this.targetDirectory.getAbsolutePath() + File.separator + afs);
return newDir;
return new File(this.targetDirectory.getAbsolutePath() + File.separator + afs);
}

private static String escape(Object cell) {
Expand Down

0 comments on commit d7f1e6f

Please sign in to comment.