Skip to content

Commit

Permalink
♻️ change access modifier to private
Browse files Browse the repository at this point in the history
  • Loading branch information
hyxrxn committed Jul 29, 2024
1 parent 3d1d4c0 commit eb405df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ private List<RecipeStepResponse> convertToRecipeStepResponses(List<RecipeStep> r
.toList();
}

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

0 comments on commit eb405df

Please sign in to comment.