Skip to content

Commit 28ed55b

Browse files
committed
Add null check
1 parent b0df25a commit 28ed55b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/pipeline/SequenceJob.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ public void setFolderFileRoot(PipeRoot folderFileRoot)
188188

189189
public Collection<String> getDockerVolumes()
190190
{
191-
return Collections.unmodifiableCollection(_dockerVolumes);
191+
return _dockerVolumes == null ? Collections.emptySet() : Collections.unmodifiableCollection(_dockerVolumes);
192192
}
193193

194194
public void setDockerVolumes(Collection<String> dockerVolumes)

0 commit comments

Comments
 (0)