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
Delete redundant Book class constructor
Signed-off-by: Pekka Helenius <fincer89@hotmail.com>
v0.0.1-alpha
Pekka Helenius
4 years ago
parent
0e32811e58
commit
32f05de98e
1 changed files
with
0 additions
and
9 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-9
bookstore/src/main/java/com/fjordtek/bookstore/model/Book.java
+ 0
- 9
bookstore/src/main/java/com/fjordtek/bookstore/model/Book.java
View File
@ -230,15 +230,6 @@ public class Book {
public
Book
(
)
{
}
public
Book
(
)
{
}
public
Book
(
String
title
,
String
author
,
int
year
,
String
isbn
,
double
price
)
{
/
/
super
(
)
;
this
.
title
=
title
;
this
.
author
=
author
;
this
.
year
=
year
;
this
.
isbn
=
isbn
;
this
.
price
=
price
;
}
public
Book
(
String
title
,
String
author
,
int
year
,
String
isbn
,
double
price
,
Category
category
)
{
public
Book
(
String
title
,
String
author
,
int
year
,
String
isbn
,
double
price
,
Category
category
)
{
/
/
super
(
)
;
/
/
super
(
)
;
this
.
title
=
title
;
this
.
title
=
title
;
Write
Preview
Loading…
Cancel
Save