Skip to content

Commit

Permalink
style(zipdownloader): fix accidental tab char usage
Browse files Browse the repository at this point in the history
  • Loading branch information
poikilotherm committed Feb 9, 2022
1 parent 19b9bec commit 66461a9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,9 @@ public void processFiles() {
String zipEntryName = checkZipEntryName(fileName, fileNamesList);
// this may not be needed anymore - some extra sanitizing of the file
// name we used to have to do - since all the values in a current Dataverse
// database may already be santized enough.
// (Edit: Yes, we still need this - there are still datasets with multiple
// files with duplicate names; this method takes care of that)
// database may already be santized enough.
// (Edit: Yes, we still need this - there are still datasets with multiple
// files with duplicate names; this method takes care of that)
if (inputStream != null && this.zipOutputStream != null) {

ZipEntry entry = new ZipEntry(zipEntryName);
Expand Down

0 comments on commit 66461a9

Please sign in to comment.