diff --git a/src/main/java/com/openshift/fordevelopers/Post.java b/src/main/java/com/openshift/fordevelopers/Post.java index f30015b..e708658 100644 --- a/src/main/java/com/openshift/fordevelopers/Post.java +++ b/src/main/java/com/openshift/fordevelopers/Post.java @@ -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; @@ -61,4 +61,4 @@ public boolean equals(Object obj) { public int hashCode() { return Objects.hash(this.title, this.content, this.timestamp); } -} \ No newline at end of file +}