Should fix EA-75417
This commit is contained in:
@@ -122,7 +122,11 @@ object J2KPostProcessingRegistrar {
|
|||||||
val tElement = element as TElement
|
val tElement = element as TElement
|
||||||
if (intention.applicabilityRange(tElement) == null) return null
|
if (intention.applicabilityRange(tElement) == null) return null
|
||||||
if (!additionalChecker(tElement)) return null
|
if (!additionalChecker(tElement)) return null
|
||||||
return { intention.applyTo(element, null) }
|
return {
|
||||||
|
if (intention.applicabilityRange(tElement) != null) { // check availability of the intention again because something could change
|
||||||
|
intention.applyTo(element, null)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user