Skip to content

Commit

Permalink
-fixed indentation anomalies in Storage.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Dban1 committed Feb 2, 2020
1 parent f7256d9 commit b67b161
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main/java/duke/storage/Storage.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ public Storage(String s) {

/**
* Builds a TaskList class from storage Filepath.
* @return Returns a TaskList class built according to storage Filepath. Returns an empty TaskList class
* if there is no storage file.
*
* @return Returns a TaskList class built according to storage Filepath. Returns
* an empty TaskList class if there is no storage file.
* @throws DukeException Filepath not found.
*/
public TaskList buildTaskList() throws DukeException {
Expand Down Expand Up @@ -60,6 +61,7 @@ public TaskList buildTaskList() throws DukeException {

/**
* Saves given TaskList to the storage file.
*
* @param taskList The TaskList to be stored.
*/
public void updateStorage(TaskList taskList) {
Expand Down

0 comments on commit b67b161

Please sign in to comment.