Skip to content

Commit

Permalink
Removed ZoneRegion from todo list, as it is a Java 17 only class, and…
Browse files Browse the repository at this point in the history
… we are staying 1.8 compatible at the moment.
  • Loading branch information
jdereg committed Feb 5, 2024
1 parent 58cbbbe commit 627e360
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/main/java/com/cedarsoftware/util/convert/Converter.java
Original file line number Diff line number Diff line change
Expand Up @@ -725,9 +725,7 @@ private static void buildFactoryConversions() {
DEFAULT_FACTORY.put(pair(ZoneOffset.class, ZoneOffset.class), Converter::identity);
DEFAULT_FACTORY.put(pair(String.class, ZoneOffset.class), StringConversions::toZoneOffset);
DEFAULT_FACTORY.put(pair(Map.class, ZoneOffset.class), MapConversions::toZoneOffset);

// java.time.ZoneRegion = com.cedarsoftware.util.io.DEFAULT_FACTORY.ZoneIdFactory


// MonthDay conversions supported
DEFAULT_FACTORY.put(pair(Void.class, MonthDay.class), VoidConversions::toNull);
DEFAULT_FACTORY.put(pair(MonthDay.class, MonthDay.class), Converter::identity);
Expand Down

0 comments on commit 627e360

Please sign in to comment.