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
Passage uses the ancient java.util.Date class in its APIs.
In Java-8 a new Date/Time API was introduced in the java.util.time which aims to be a better alternative to the Date class.
Since you seem to prepare a new major version of Passage, you maybe want to consider to migrate the APIs using java.util.Date to use the replacements from the java.util.time package instead?
There is for example the following article that describes the new APIs and outlines the migration:
Passage uses the ancient
java.util.Date
class in its APIs.In Java-8 a new Date/Time API was introduced in the
java.util.time
which aims to be a better alternative to the Date class.Since you seem to prepare a new major version of Passage, you maybe want to consider to migrate the APIs using
java.util.Date
to use the replacements from thejava.util.time
package instead?There is for example the following article that describes the new APIs and outlines the migration:
The text was updated successfully, but these errors were encountered: