Skip to content

Commit

Permalink
refactor: 코드 컨벤션 준수
Browse files Browse the repository at this point in the history
  • Loading branch information
cabbage16 committed Jul 30, 2024
1 parent ad10aab commit cc6f9b9
Showing 1 changed file with 5 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,7 @@ public List<Form> findReceivedSpecialForm() {
.and(form.type.eq(FormType.SPECIAL_ADMISSION).not())
)
)
.orderBy(
form.score.firstRoundScore.desc()
)
.orderBy(form.score.firstRoundScore.desc())
.fetch();
}

Expand All @@ -101,9 +99,7 @@ public List<Form> findReceivedRegularForm() {
.or(form.changedToRegular.isTrue())
)
)
.orderBy(
form.score.firstRoundScore.desc()
)
.orderBy(form.score.firstRoundScore.desc())
.fetch();
}

Expand All @@ -118,9 +114,7 @@ public List<Form> findReceivedSupernumeraryForm() {
.or(form.type.eq(FormType.NATIONAL_VETERANS_EDUCATION))
)
)
.orderBy(
form.score.firstRoundScore.desc()
)
.orderBy(form.score.firstRoundScore.desc())
.fetch();
}

Expand All @@ -136,9 +130,7 @@ public List<Form> findFirstPassedSpecialForm() {
.and(form.type.eq(FormType.SPECIAL_ADMISSION).not())
)
)
.orderBy(
form.score.totalScore.desc()
)
.orderBy(form.score.totalScore.desc())
.fetch();
}

Expand All @@ -153,9 +145,7 @@ public List<Form> findFirstPassedRegularForm() {
.or(form.changedToRegular.isTrue())
)
)
.orderBy(
form.score.totalScore.desc()
)
.orderBy(form.score.totalScore.desc())
.fetch();
}

Expand Down

0 comments on commit cc6f9b9

Please sign in to comment.