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
Storage uses the JAXB module for storing and retrieving of the
address book data in a file.
However, we are trying to ensure Java 9 compatibility in #381,
but the JAXB module is deprecated from Java 9 onwards.
As use of deprecated modules is considered bad practice, we should
replace our storage needs with another library before moving on
to ensure Java 9 compatibility.
As suggested here[1], let's reuse the storage code from
addressbook-level1.
[1]: #382 (comment)
Depends on #383
We are trying to ensure Java 9 compatibility for the project.
However, the project uses
java.xml.bind
module, which is marked asdeprecated in Java 9.
As discussed here, using deprecated modules is bad practice, thus we should switch to another method for storage purposes.
As discussed here, let's reuse the AB1 storage code for the AB2 project.
The text was updated successfully, but these errors were encountered: