Skip to content

Commit

Permalink
refactor: 누락된 final 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
kwonyj1022 authored Nov 3, 2023
1 parent eedf6e2 commit 33963e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class LocalStoreImageProcessor implements StoreImageProcessor {
public List<StoreImageDto> storeImageFiles(final List<MultipartFile> imageFiles) {
final List<StoreImageDto> storeImageDtos = new ArrayList<>();

for (MultipartFile imageFile : imageFiles) {
for (final MultipartFile imageFile : imageFiles) {
if (imageFile.isEmpty()) {
throw new EmptyImageException("이미지 파일의 데이터가 비어 있습니다.");
}
Expand Down

0 comments on commit 33963e2

Please sign in to comment.