Skip to content

Commit

Permalink
fix lombok data & empty line
Browse files Browse the repository at this point in the history
  • Loading branch information
TarasYashchuk committed Jun 12, 2024
1 parent ba18582 commit 154a510
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 4 additions & 2 deletions src/main/java/mate/academy/model/Book.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@
import jakarta.persistence.Id;
import jakarta.persistence.Table;
import java.math.BigDecimal;
import lombok.Data;
import lombok.Getter;
import lombok.Setter;

@Entity
@Data
@Getter
@Setter
@Table(name = "books")
public class Book {
@Id
Expand Down
1 change: 0 additions & 1 deletion src/main/java/mate/academy/service/BookService.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

@Service
public class BookService {

private final BookRepository bookRepository;

@Autowired
Expand Down

0 comments on commit 154a510

Please sign in to comment.