Skip to content

Commit

Permalink
[FIX] - Fix UnsatisfiedDependencyException
Browse files Browse the repository at this point in the history
  • Loading branch information
sgh002400 committed Aug 24, 2021
1 parent 20e7998 commit 9da4aa3
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@
import java.util.Optional;

public interface IndieAppDetailRepository extends JpaRepository<IndieAppDetail, Long> {
Optional<IndieAppDetail> findByIndieApp_IdAndLanguage(@Param(value = "indieAppId") Long indieAppId, String language);
}
Optional<IndieAppDetail> findByIndieApp_IdAndLanguage(@Param(value = "indieAppId") Long indieAppId, @Param(value="language") String language);}

0 comments on commit 9da4aa3

Please sign in to comment.