Skip to content

Commit

Permalink
Removed unnecessary white spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Varsha3006 committed Oct 1, 2020
1 parent 03a1778 commit 2d7fa35
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
10 changes: 9 additions & 1 deletion src/main/java/Duke/Duke.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,22 @@
import java.time.DateTimeException;
import Duke.Command.Command;

/**
* The Duke programme allows users to store their tasks as either an
* Event, To Do or Deadline
*
* @author Varsha MS
* @since 1/10/2020
*
*/

public class Duke {
private TaskList list;
private Storage storage;

/**
* Runs Duke instance.
*
* @param args
*/
public static void main(String[] args) throws IOException {
new Duke("duke.txt").run();
Expand Down
3 changes: 0 additions & 3 deletions src/main/java/Duke/Task.java
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
package Duke;

import Duke.Duke;

import java.time.LocalDate;


public abstract class Task {
protected String description;
protected boolean isDone;
Expand Down
1 change: 0 additions & 1 deletion src/main/java/Duke/TaskList.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import java.util.ArrayList;
import java.util.stream.Collectors;


/**
* Represents the TaskList.
*/
Expand Down

0 comments on commit 2d7fa35

Please sign in to comment.