Skip to content

Commit

Permalink
Merge pull request #28 from z-wenqing/master
Browse files Browse the repository at this point in the history
Add newline at end of file
  • Loading branch information
z-wenqing committed Mar 18, 2024
2 parents e3415aa + 6c30e11 commit 30381a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/main/java/seedu/duke/User.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
package seedu.duke;
public class User {
private final String name;
public Timetable timetable = new Timetable();
private final String name;

public User(String name) {
this.name = name;
}
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/seedu/duke/TimetableTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ public void testDeleteUserTask() {
assertEquals(task2, timetable.daysOfWeek.get(0).get(0));

}
}
}

0 comments on commit 30381a5

Please sign in to comment.