Skip to content

Commit

Permalink
Refactor: ReReLint
Browse files Browse the repository at this point in the history
  • Loading branch information
huGgW committed Sep 19, 2023
1 parent 2f7aba0 commit fb3fec8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,14 @@ interface CommonRepository {
fun searchFullSingleTextTemplate(keyword: String, field: Any): NumberTemplate<Double>
fun searchFullDoubleTextTemplate(keyword: String, field1: Any, field2: Any): NumberTemplate<Double>
fun searchFullTripleTextTemplate(keyword: String, field1: Any, field2: Any, field3: Any): NumberTemplate<Double>
fun searchFullQuadrapleTextTemplate(keyword: String, field1: Any, field2: Any, field3: Any, field4: Any): NumberTemplate<Double>
fun searchFullQuadrapleTextTemplate(
keyword: String,
field1: Any,
field2: Any,
field3: Any,
field4: Any
): NumberTemplate<Double>

fun searchFullQuintupleTextTemplate(
keyword: String,
field1: Any,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ data class AboutDto(
val attachments: List<AttachmentResponse>?
) {
companion object {
fun of(entity: AboutEntity, imageURL: String?, attachmentResponses: List<AttachmentResponse>): AboutDto = entity.run {
fun of(
entity: AboutEntity,
imageURL: String?,
attachmentResponses: List<AttachmentResponse>
): AboutDto = entity.run {
AboutDto(
id = this.id,
name = this.name,
Expand Down

0 comments on commit fb3fec8

Please sign in to comment.