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
commit
32f05de98e
1 changed files with 0 additions and 9 deletions
  1. +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;


Loading…
Cancel
Save