You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Core] Replace TimeService with Java Time API (#1620)
## Summary
Migrating the current code to use Java 8 Time API fields instead of the currently used primitive fields.
## Details
The long fields `time`, `timeStampMillis` and `duration` have been replaced by `Instant` and `Duration` respectively.
These values can now be used instead of older primitives to allow for better representation of time and duration in cucumber without having to worry about precision or granularity.
## Motivation and Context
To allow for more consistent time measurements and reduce custom code.
0 commit comments