Skip to content

Commit

Permalink
Fixed small bug in UserInfo.toString()
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesGold23 committed Jun 10, 2014
1 parent b922c56 commit 1360fa5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/main/java/com/github/jreddit/user/UserInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public String toString() {
.append("name: ").append(name).append(newLine)
.append("modhash: ").append(modhash).append(newLine)
.append("commentKarma: ").append(commentKarma).append(newLine)
.append("linkKarma: ").append(id).append(newLine)
.append("linkKarma: ").append(linkKarma).append(newLine)
.append("isModerator: ").append(isMod).append(newLine)
.append("hasModMail: ").append(hasModMail).append(newLine)
.append("hasMail: ").append(hasMail).append(newLine)
Expand All @@ -202,9 +202,8 @@ public String toString() {
.append("Created: ").append(created).append(newLine)
.append("CreatedUTC: ").append(createdUTC).append(newLine)
.append("isFriend: ").append(isFriend).append(newLine)
.append("over18: ").append(over18).append(newLine);
.append("over18: ").append(over18);

return result.toString();

}
}

0 comments on commit 1360fa5

Please sign in to comment.