Skip to content
Snippets Groups Projects
Commit 10502663 authored by Adam Laskowski's avatar Adam Laskowski
Browse files

BIS-1093: Removing discard-hidden-files flag

parent 34a54a33
No related branches found
No related tags found
No related merge requests found
......@@ -385,7 +385,6 @@ jython-version=2.7
#
default-incoming-share-id=1
default-incoming-share-minimum-free-space-in-gb=10
eln-lims-dropbox-discard-hidden-files=false
eln-lims-dropbox-allow-hidden-files=true
#eln-lims-dropbox-discard-files-patterns =
#
......
......@@ -189,8 +189,6 @@ public final class ThreadParameters
private final boolean h5arFolders;
private final boolean discardHiddenFiles;
private final boolean allowHiddenFiles;
private final String discardFilesPatterns;
......@@ -205,7 +203,6 @@ public final class ThreadParameters
this.incomingDataDirectory = extractIncomingDataDir(threadProperties, threadName);
this.h5Folders = PropertyUtils.getBoolean(threadProperties, H5_FOLDERS, false);
this.h5arFolders = PropertyUtils.getBoolean(threadProperties, H5AR_FOLDERS, true);
this.discardHiddenFiles = PropertyUtils.getBoolean(threadProperties, DISCARD_HIDDEN_FILES, true);
this.allowHiddenFiles = PropertyUtils.getBoolean(threadProperties, ALLOW_HIDDEN_FILES, true);
this.createIncomingDirectories =
PropertyUtils.getBoolean(threadProperties, INCOMING_DIR_CREATE, true);
......@@ -584,11 +581,6 @@ public final class ThreadParameters
return h5Folders;
}
public boolean discardHiddenFiles()
{
return discardHiddenFiles;
}
public boolean allowHiddenFiles()
{
return allowHiddenFiles;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment