Skip to content

Commit

Permalink
[style] : 오타 수정
Browse files Browse the repository at this point in the history
[style] : 오타 수정
  • Loading branch information
emilywin825 authored May 23, 2024
2 parents e5796a5 + 88155cf commit 055e1a9
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,7 @@ public List<ProgramsHomeDto.ProgramsHomeResponseDto> getHomeSelfUnderstanding(St

@Override
public List<ProgramsHomeDto.ProgramsHomeResponseDto> getHomeBranding(String authorizationHeader, ProgramDto.ProgramBrandingRequestDto requestDto) {
List<Branding> brandings = findBrandingsByFilter(authorizationHeader, requestDto);
return brandings.stream().limit(5).map(ProgramsHomeDto.ProgramsHomeResponseDto::of).collect(Collectors.toList());
return findBrandingsByFilter(authorizationHeader, requestDto).stream().limit(5).map(ProgramsHomeDto.ProgramsHomeResponseDto::of).collect(Collectors.toList());
}

@Override
Expand Down

0 comments on commit 055e1a9

Please sign in to comment.