Fix boneheaded mistake in the new interval filtering code I added on Sunday.

Sorry everyone.


git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@4521 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
hanna 2010-10-19 01:20:12 +00:00
parent 81479229e1
commit c5f105d050
1 changed files with 5 additions and 2 deletions

View File

@ -823,9 +823,12 @@ public class SAMDataSource implements SimpleDataSource {
}
}
// No more reads available. Stop the search.
if(!iterator.hasNext())
break;
// No reasonable read found; advance the iterator.
if(iterator.hasNext())
candidateRead = iterator.next();
candidateRead = iterator.next();
}
}
}