File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
schemas-parse/src/main/groovy/org/cedar/schemas/parse Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -445,7 +445,7 @@ class ISOParser {
445445 def builder = Link . newBuilder()
446446 builder. linkName = node. name?. CharacterString ?. text()?. trim() ?: null
447447 builder. linkProtocol = node. protocol?. CharacterString ?. text()?. trim() ?: null
448- builder. linkUrl = node. linkage?. URL ?. text() ? StringEscapeUtils . unescapeXml( node.linkage.URL . text( )) : null
448+ builder. linkUrl = StringEscapeUtils . unescapeXml( node. linkage?. URL ?. text()?. trim( )) ? : null
449449 builder. linkDescription = node. description?. CharacterString ?. text()?. trim() ?: null
450450 builder. linkFunction = node. function?. CI_OnLineFunctionCode ?. @codeListValue?. text()?. trim() ?: null
451451 return builder. build()
You can’t perform that action at this time.
0 commit comments