()
| 13 | } |
| 14 | |
| 15 | public static LocalDateTime now() { |
| 16 | return now(Clock.systemDefaultZone()); |
| 17 | } |
| 18 | |
| 19 | public static LocalDateTime now(Clock clock) { |
| 20 | return ofInstant(clock.instant(), clock.getZone()); |
nothing calls this directly
no test coverage detected