We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cbb2de commit 6c66602Copy full SHA for 6c66602
src/main/groovy/au/org/ala/spatial/process/DistributionRematchLsid.groovy
@@ -92,20 +92,20 @@ class DistributionRematchLsid extends SlaveProcess {
92
def genusID = ''
93
def ignoreTaxonMatch = false
94
95
- def value = output.get('taxonConceptID')
+ def value = output.get('taxonConceptID', null)
96
if (value) {
97
taxonConceptID = value
98
}
99
- value = output.get('familyID')
+ value = output.get('familyID', null)
100
101
familyID = value
102
103
- value = output.get('genusID')
+ value = output.get('genusID', null)
104
105
genusID = value
106
107
108
- value = output.get('issues')
+ value = output.get('issues', null)
109
ignoreTaxonMatch = ('' + value).indexOf('excluded') >= 0
110
111
if (ignoreTaxonMatch) {
0 commit comments