Skip to content

Commit

Permalink
♻️ modify RecipeService method access modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
oshyun00 committed Jul 24, 2024
1 parent 12fe127 commit fba4540
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public List<MainRecipeResponse> readRecipes(MainRecipeRequest request) {
return convertToMainRecipeResponses(recipeDataResponses);
}

private List<MainRecipeResponse> convertToMainRecipeResponses(List<RecipeDataResponse> recipeDataResponses) {
public List<MainRecipeResponse> convertToMainRecipeResponses(List<RecipeDataResponse> recipeDataResponses) {
Collection<List<RecipeDataResponse>> groupedRecipeData = recipeDataResponses.stream()
.collect(Collectors.groupingBy(RecipeDataResponse::recipeId))
.values();
Expand Down

0 comments on commit fba4540

Please sign in to comment.