Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions api/src/org/labkey/api/assay/AbstractAssayProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -2169,10 +2169,11 @@ private void updateResultFiles(FilteredTable assayResultTable, List<ExpRun> runs
Map<Integer, ExpRun> runMap = new HashMap<>();
runs.forEach(run -> runMap.put(run.getRowId(), run));

Map<String, AssayFileMoveReference> fileMoveReferences = new HashMap<>();
Map<String, List<Integer>> fileMoveResultRowIds = new HashMap<>();
for (String fileField : fileFields)
{
Map<String, AssayFileMoveReference> fileMoveReferences = new HashMap<>();
Map<String, List<Integer>> fileMoveResultRowIds = new HashMap<>();

var fileColumn = assayResultTable.getColumn(fileField);
TableSelector ts = new TableSelector(assayResultTable, assayResultTable.getColumns("rowid", "run", fileField), filter, null);
Map<String, Object>[] resultFiles = ts.getMapArray();
Expand Down