Closed
Description
With version 0.4.0, this passes
val x = UtcOffset.parse("+4")
val y = UtcOffset.parse("+04")
assertEquals(x, y)
This fails
val a = UtcOffset.parse("+4:00")
val b = UtcOffset.parse("+04:00")
assertEquals(a, b)
My understanding of the standard is that +4
should be invalid, but I care more that the parsing is consistent.