Skip to content

Commit

Permalink
Minor Changes to TaskView
Browse files Browse the repository at this point in the history
  • Loading branch information
YesYouKenSpace committed Oct 25, 2016
1 parent 54f6da7 commit 8bc05f3
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/main/java/seedu/address/model/task/ReadOnlyTask.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,10 @@ default String getAsHTML() {
.append(getTime().get().getEndDate().get().toLocalTime());
}
builder.append("</h3>")
.append("<h3> Description: ")
.append(getDescription())
.append("</h3>")
.append("<h3> Location: ")
.append(getLocation())
.append("</h3>")
.append("<h3> Description: </h3>")
.append("<p>" + getDescription()+ "</p>")
.append("<h3> Location: </h3>")
.append("<p>" + getLocation()+ "</p>")
.append("<h3> Tags: ");
getTags().forEach(builder::append);
builder.append("</h3>")
Expand Down

0 comments on commit 8bc05f3

Please sign in to comment.