Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.0.9
-
None
Description
The following Kotlin Code results in a NullPointerException:
when(pdField) {
is PDTextField -> {
{{ try {}}
{{ pdField.value = value?.toString() ?: ""}}
{{ } catch (ioException: IOException) {}}
{{ pdField.cosObject.setString(COSName.DA, "/Helv 0 tf 0 g")}}
{{ pdField.value = value?.toString() ?: ""}}
{{ }}}
}}