From 2f600eb3b08524eefb0b1fb2dbc06812ca7844b3 Mon Sep 17 00:00:00 2001 From: yeonjy Date: Wed, 29 May 2024 20:33:01 +0900 Subject: [PATCH] =?UTF-8?q?style:=20=EC=A4=84=EB=B0=94=EA=BF=88=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../backend/domain/news/repository/NewsRepository.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/core/src/main/java/com/rollthedice/backend/domain/news/repository/NewsRepository.java b/backend/core/src/main/java/com/rollthedice/backend/domain/news/repository/NewsRepository.java index b70a295a..e147d4ae 100644 --- a/backend/core/src/main/java/com/rollthedice/backend/domain/news/repository/NewsRepository.java +++ b/backend/core/src/main/java/com/rollthedice/backend/domain/news/repository/NewsRepository.java @@ -10,6 +10,5 @@ @Repository public interface NewsRepository extends JpaRepository { List findAllByContentIsNull(); - List findAllByOrderByViewsDescCreatedAtDesc( - final Pageable pageable); + List findAllByOrderByViewsDescCreatedAtDesc(final Pageable pageable); }