Skip to content
Snippets Groups Projects
Commit 39ddfdae authored by buczekp's avatar buczekp
Browse files

[LMS-1772] fixed bug

SVN: 18636
parent f5d2d990
No related branches found
No related tags found
No related merge requests found
...@@ -55,7 +55,7 @@ final class UpdatedSampleParserObjectFactory extends NewSampleParserObjectFactor ...@@ -55,7 +55,7 @@ final class UpdatedSampleParserObjectFactory extends NewSampleParserObjectFactor
boolean updateExperiment = isColumnAvailable(UpdatedSample.EXPERIMENT); boolean updateExperiment = isColumnAvailable(UpdatedSample.EXPERIMENT);
boolean updateParent = isColumnAvailable(UpdatedSample.PARENT); boolean updateParent = isColumnAvailable(UpdatedSample.PARENT);
boolean updateParents = isColumnAvailable(UpdatedSample.PARENTS); boolean updateParents = isColumnAvailable(UpdatedSample.PARENTS);
if (updateParent == updateParents == true) if (updateParent == true && updateParents == true)
{ {
throw new ParserException("Both '" + UpdatedSample.PARENT + "' and '" throw new ParserException("Both '" + UpdatedSample.PARENT + "' and '"
+ UpdatedSample.PARENTS + UpdatedSample.PARENTS
......
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