You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: engine-adapter/c7-remote-core/src/main/kotlin/dev/bpmcrafters/processengineapi/adapter/c7/remote/task/delivery/TaskInformationExtensions.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,7 @@ fun Date?.toDateString() = this?.toInstant()?.toIso8601() ?: ""
72
72
/**
73
73
* Converts offset date time to string representation in ISO8601 in UTC.
74
74
*/
75
-
fun OffsetDateTime?.toDateString() =this?.atZoneSameInstant(ZoneOffset.UTC).toString()
75
+
fun OffsetDateTime?.toDateString() =this?.atZoneSameInstant(ZoneOffset.UTC)?.toString()?:""
Copy file name to clipboardExpand all lines: engine-adapter/c7-remote-core/src/test/kotlin/dev/bpmcrafters/processengineapi/adapter/c7/remote/task/delivery/TaskInformationExtensionsKtTest.kt
+45Lines changed: 45 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -83,7 +83,52 @@ class TaskInformationExtensionsKtTest {
0 commit comments