Skip to content

Commit

Permalink
remove tow spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
BenediktMeierUIT committed Mar 25, 2024
1 parent b4b9acf commit c9c4bc9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ public void processFilePath(String fileDir, String parentIdtf, DataverseRequest

SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd_HH:mm:ss");

validationLog = new PrintWriter(new FileWriter( System.getProperty("com.sun.aas.instanceRoot") + File.separator + "logs"+ File.separator + "validationLog"+ formatter.format(timestamp)+".txt"));
cleanupLog = new PrintWriter(new FileWriter( System.getProperty("com.sun.aas.instanceRoot") + File.separator + "logs"+ File.separator + "cleanupLog"+ formatter.format(timestamp)+".txt"));
validationLog = new PrintWriter(new FileWriter( System.getProperty("com.sun.aas.instanceRoot") + File.separator + "logs" + File.separator + "validationLog" + formatter.format(timestamp)+".txt"));
cleanupLog = new PrintWriter(new FileWriter( System.getProperty("com.sun.aas.instanceRoot") + File.separator + "logs"+ File.separator + "cleanupLog" + formatter.format(timestamp)+".txt"));
File dir = new File(fileDir);
if (dir.isDirectory()) {
for (File file : dir.listFiles()) {
Expand Down

0 comments on commit c9c4bc9

Please sign in to comment.