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

LMS-1988 Remove use of "OrNull" from the IDataSet interface.

SVN: 19776
parent 902b3927
No related branches found
No related tags found
No related merge requests found
...@@ -94,12 +94,12 @@ public class DataSet<T extends DataSetInformation> implements IDataSet ...@@ -94,12 +94,12 @@ public class DataSet<T extends DataSetInformation> implements IDataSet
setExperiment(exp.getExperiment()); setExperiment(exp.getExperiment());
} }
public ISampleImmutable getSampleOrNull() public ISampleImmutable getSample()
{ {
return sampleOrNull; return sampleOrNull;
} }
public void setSampleOrNull(ISampleImmutable sampleOrNull) public void setSample(ISampleImmutable sampleOrNull)
{ {
this.sampleOrNull = sampleOrNull; this.sampleOrNull = sampleOrNull;
......
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