This website works better with JavaScript.
Home
Explore
Register
Sign In
Fincer
/
java-bookstore
mirror of
https://github.com/Fincer/java-bookstore
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
4
Wiki
Activity
Browse Source
Update toString method
Signed-off-by: Pekka Helenius <fincer89@hotmail.com>
v0.0.1-alpha
Pekka Helenius
4 years ago
parent
32f05de98e
commit
95da20e3c0
1 changed files
with
1 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
@Override
public
String
toString
(
)
{
public
String
toString
(
)
{
return
"["
+
"id: "
+
this
.
id
+
return
"["
+
"id: "
+
this
.
id
+
", "
+
"name: "
+
this
.
name
+
"]"
;
"name: "
+
this
.
name
+
"]"
;
}
}
Write
Preview
Loading…
Cancel
Save