-
Notifications
You must be signed in to change notification settings - Fork 163
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[T6A2][F11-B3]LEUNG Cheuk Ting #508
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some comment are added in #497 already. There is only one activity in this tutorial :P
@@ -0,0 +1,29 @@ | |||
package seedu.addressbook.storage; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You also need to update the test case.
We are using stub
here, which means in LogicTest
we only care whether the logic works or not. We don't need to test the storage part anymore. (Yeah, there is somewhere in LogicTest
that verifies whether the storage works or not. Find by yourself. :) )
|
||
|
||
public AddressBook load() throws StorageOperationException{ | ||
return this.addressBook; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do you need this code here? A return null
is enough? Stubs don't usually do any work.
@ctleungac Some comments added. Please close the PR after reading comments. |
No description provided.