Skip to content

Commit

Permalink
style: checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
oksana-miazina committed May 22, 2024
1 parent 1cf4029 commit ada5086
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
package mate.academy.bookstore.repository;

import java.util.List;
import java.util.Set;
import mate.academy.bookstore.model.CartItem;
import mate.academy.bookstore.model.CartItemKey;
import org.springframework.data.jpa.repository.JpaRepository;

import java.util.List;
import java.util.Set;

public interface CartItemRepository extends JpaRepository<CartItem, CartItemKey> {
Set<CartItem> getById_Book_IdIn(List<Long> ids);
}

0 comments on commit ada5086

Please sign in to comment.