Skip to content
Snippets Groups Projects
Commit 1477868b authored by tpylak's avatar tpylak
Browse files

LMS-1541 bugfix: reviewing panel

SVN: 16555
parent f56f0c2e
No related branches found
No related tags found
No related merge requests found
...@@ -163,7 +163,12 @@ public class GenePlateLocationsLoader ...@@ -163,7 +163,12 @@ public class GenePlateLocationsLoader
List<ExternalDataPE> datasets = new ArrayList<ExternalDataPE>(); List<ExternalDataPE> datasets = new ArrayList<ExternalDataPE>();
for (WellContent wellContent : wellContents) for (WellContent wellContent : wellContents)
{ {
datasets.addAll(plateToDatasetMap.get(wellContent.getPlate().getId())); List<ExternalDataPE> plateDatasets =
plateToDatasetMap.get(wellContent.getPlate().getId());
if (plateDatasets != null)
{
datasets.addAll(plateDatasets);
}
} }
return datasets; return datasets;
} }
......
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