Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
lysalexy committed Dec 18, 2023
1 parent f7f589e commit 3a4aad6
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
package org.example.repository.cart;

import java.util.Optional;
import org.example.entities.cart.Cart;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;

import java.util.Optional;

@Repository
public interface CartRepository extends JpaRepository<Cart, Long> {
Optional<Cart> findByUserAccount_Id(Long user_id);
Expand Down

0 comments on commit 3a4aad6

Please sign in to comment.