Minor change but I realized from Mark's commit that the code I stole it from was flawed

This commit is contained in:
Eric Banks 2012-03-20 08:55:56 -04:00
parent ade1971581
commit 5e79046c98
1 changed files with 1 additions and 1 deletions

View File

@ -613,7 +613,7 @@ public class GenomeAnalysisEngine {
*/
protected GenomeLocSortedSet loadIntervals( List<IntervalBinding<Feature>> argList, IntervalSetRule rule ) {
List<GenomeLoc> allIntervals = new ArrayList<GenomeLoc>(0);
List<GenomeLoc> allIntervals = new ArrayList<GenomeLoc>();
for ( IntervalBinding intervalBinding : argList ) {
List<GenomeLoc> intervals = intervalBinding.getIntervals(this);