Skip to content

Commit

Permalink
fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
ChenKangg committed Apr 7, 2024
1 parent 4bece48 commit 3d14f81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/seedu/omnitravel/parser/Parser.java
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public static void addCommand(String line, TravelActivityList list) throws OmniE
tag = "";
location = "";
}
TravelActivity newActivity = new TravelActivity(description, date, duration, tag, location,"")
TravelActivity newActivity = new TravelActivity(description, date, duration, tag, location,"");
list.addTravelActivity(newActivity);
System.out.println("I added a new travel activity");
System.out.println(newActivity);
Expand Down

0 comments on commit 3d14f81

Please sign in to comment.