Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/main/java/com/openshift/fordevelopers/Post.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ public Post(String title, String content) {
}

public String getTitle() {
return new StringBuilder(title).reverse().toString(); // Should be: return title;
return title;
}

public String getContent() {
return new StringBuilder(content).reverse().toString(); // Should be: return content;
return content;
}
public Long getTimestamp() {
return timestamp;
Expand Down Expand Up @@ -61,4 +61,4 @@ public boolean equals(Object obj) {
public int hashCode() {
return Objects.hash(this.title, this.content, this.timestamp);
}
}
}