Skip to content

Commit 04bb379

Browse files
committedJan 26, 2023
Minor change.
1 parent 79a1768 commit 04bb379

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

Diff for: ‎src/main/java/an/kte/service/StatisticService.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public ClientStatistic findByClientId(Long clientId) {
8686
return clientStatisticRepository.findByClientId(clientId);
8787
}
8888

89-
public ProductStatistic findByProductId(Long clientId) {
90-
return productStatisticRepository.findByProductId(clientId);
89+
public ProductStatistic findByProductId(Long productId) {
90+
return productStatisticRepository.findByProductId(productId);
9191
}
9292
}

0 commit comments

Comments
 (0)
Please sign in to comment.