Skip to content

Commit

Permalink
Remove extra code
Browse files Browse the repository at this point in the history
(cherry picked from commit 517e932)
  • Loading branch information
shannentan committed Mar 3, 2023
1 parent d766630 commit 099340f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/main/java/Deadline.java
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
public class Deadline extends Task {

protected String by;
// protected String opening = "...\n" + "Got it. I've added this deadline:\n" + " [D][ ] ";

public Deadline(String description, String by) {
super(description);
this.by = by;
// System.out.println(opening + description + "(by: " + by + ")");
}

@Override
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/Event.java
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
public class Event extends Task {
protected String start;
protected String end;
// protected String opening = "...\n" + "Got it. I've added this event:\n" + " [E][ ] ";

public Event(String description, String start, String end) {
super(description);
this.start = start;
this.end = end;
// System.out.println(opening + description + "(from: " + start + " to: " + end + ")");
}

@Override
Expand Down

0 comments on commit 099340f

Please sign in to comment.