Skip to content

Commit 2fd8b02

Browse files
committed
Fix compilation after a merge
1 parent 78f5694 commit 2fd8b02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/jvm/src/Instant.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public actual class Instant internal constructor(
113113
iStream.defaultReadObject()
114114
val field = this::class.java.getDeclaredField(::value.name)
115115
field.isAccessible = true
116-
field.set(this, jtOffsetDateTime.parse(fixOffsetRepresentation(iStream.readObject() as String)).toInstant())
116+
field.set(this, parse(iStream.readObject() as String))
117117
}
118118

119119
private fun readObjectNoData() {

0 commit comments

Comments
 (0)