Hello, the call super() within the StorageManager class (line 23 -30) seems to be meaningless and could be removed to avoid misunderstanding:
/**
* Creates a {@code StorageManager} with the given {@code AddressBookStorage} and {@code UserPrefStorage}.
*/
public StorageManager(AddressBookStorage addressBookStorage, UserPrefsStorage userPrefsStorage) {
super();
this.addressBookStorage = addressBookStorage;
this.userPrefsStorage = userPrefsStorage;
}
Discussion on this minor issue can be found here.
Thank you.
Hello, the call
super()
within theStorageManager
class (line 23 -30) seems to be meaningless and could be removed to avoid misunderstanding:Discussion on this minor issue can be found here. Thank you.