Skip to content

Commit

Permalink
skip section2 if not available
Browse files Browse the repository at this point in the history
  • Loading branch information
gmuth committed Dec 16, 2024
1 parent 9a60e7b commit 848bf3a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ object IppRegistrationsSection4 {
.forEach { logger.info { it.value.joinToString(", ") } }

fun listKeywordValuesForAttribute(attribute: String) {
IppRegistrationsSection2.getAttribute(attribute)!!.apply {
IppRegistrationsSection2.getAttribute(attribute)?.apply {
logger.info { "keyword values for $name ($syntax), $collection, $reference}" }
}
getKeywordValuesForAttribute(attribute)
Expand Down

0 comments on commit 848bf3a

Please sign in to comment.