Browse Source

Update toString method

Signed-off-by: Pekka Helenius <fincer89@hotmail.com>
v0.0.1-alpha
Pekka Helenius 4 years ago
parent
commit
95da20e3c0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      bookstore/src/main/java/com/fjordtek/bookstore/model/Category.java

+ 1
- 1
bookstore/src/main/java/com/fjordtek/bookstore/model/Category.java View File

@ -77,7 +77,7 @@ public class Category {
@Override
public String toString() {
return "[" + "id: " + this.id +
return "[" + "id: " + this.id + ", " +
"name: " + this.name + "]";
}

Loading…
Cancel
Save