Skip to content
Snippets Groups Projects
Commit e0362122 authored by cramakri's avatar cramakri
Browse files

LMS-2735 Implement primary data set logic for InfectX.

SVN: 24116
parent 5d077d09
No related branches found
No related tags found
No related merge requests found
...@@ -183,11 +183,11 @@ public final class DataSet implements Serializable ...@@ -183,11 +183,11 @@ public final class DataSet implements Serializable
return containedDataSets; return containedDataSets;
} }
public void setContainedDataSets(List<DataSet> containedDataSetCodes) public void setContainedDataSets(List<DataSet> containedDataSets)
{ {
this.containedDataSets = this.containedDataSets =
(null == containedDataSetCodes) ? new ArrayList<DataSet>() (null == containedDataSets) ? new ArrayList<DataSet>()
: containedDataSetCodes; : containedDataSets;
} }
} }
......
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