okarm
+-hh:mm
Instant.parse
Instant.parse now supports:
Time zone offsets in the form of +-hh:mm
Time part allows the omission of colons (allows hhmmss)
Time part allows the omission of seconds
Implementation notes:
Input string is split by the time delimiter (T|t) into date and time parts.
Date parsing is delegated to LocalDate.parse
Time parsing employs the well known algorithm from Iso8601Utils.java
originally implemented in Jackson. This commit is based on Moshi's
version of that file.
A modern programming language that makes developers happier.