Skip to content
Snippets Groups Projects
Commit d6fe6f71 authored by vkovtun's avatar vkovtun
Browse files

BIS-1335: In exported ZIP, removed empty experiment folders, which contained...

BIS-1335: In exported ZIP, removed empty experiment folders, which contained no name (when provided).
parent f1dae6c7
No related branches found
No related tags found
No related merge requests found
......@@ -247,7 +247,9 @@ class EntitiesFinder
private static void configureFetchOptions(final DataSetFetchOptions dataSetFetchOptions)
{
dataSetFetchOptions.withExperiment().withProject().withSpace();
final ExperimentFetchOptions experimentFetchOptions = dataSetFetchOptions.withExperiment();
experimentFetchOptions.withProperties();
experimentFetchOptions.withProject().withSpace();
dataSetFetchOptions.withType().withPropertyAssignments().withPropertyType();
dataSetFetchOptions.withProperties();
dataSetFetchOptions.withRegistrator();
......
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