We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65bdfe5 commit 15f6fc2Copy full SHA for 15f6fc2
SequenceAnalysis/src/org/labkey/sequenceanalysis/run/variant/SampleRenameStep.java
@@ -27,6 +27,7 @@
27
import java.io.File;
28
import java.util.ArrayList;
29
import java.util.Arrays;
30
+import java.util.Collections;
31
import java.util.HashMap;
32
import java.util.List;
33
import java.util.Map;
@@ -110,7 +111,7 @@ else if (enforceChangeAll)
110
111
List<Interval> queryIntervals = intervals;
112
if (queryIntervals == null || queryIntervals.isEmpty())
113
{
- queryIntervals.add(null);
114
+ queryIntervals = Collections.singletonList(null);
115
}
116
117
int i = 0;
0 commit comments