Skip to content

Commit

Permalink
Fix returned "2x" filepaths
Browse files Browse the repository at this point in the history
  • Loading branch information
maxspier authored Nov 22, 2023
1 parent 8d200d1 commit 5b4d05f
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,10 +213,8 @@ private String createUniqueFileNameAndFile() throws IOException {
File newFile = new File(fileName);
newFile.createNewFile();

String toReturn = Filesystem.getDeployDirectory().getPath() + fileName;

return toReturn;
return fileName;

}

}
}

0 comments on commit 5b4d05f

Please sign in to comment.