Skip to content

Commit

Permalink
Style: (develop) trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
alsdl0629 committed Nov 23, 2023
1 parent 8a6f60e commit ac1c89d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class ClosureEntity(

@field:NotNull
@Column(columnDefinition = "TINYINT UNSIGNED")
val depth: Int,
val depth: Int
)

@Embeddable
Expand All @@ -23,5 +23,5 @@ data class ClosureId(
val ancestorId: Long,

@Column(columnDefinition = "INT UNSIGNED")
val descendantId: Long,
val descendantId: Long
) : Serializable
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ class ElementEntity(

@field:NotNull
@Column(columnDefinition = "CHAR(10)")
val type: Type,
val type: Type
) : BaseIdEntity(id)

0 comments on commit ac1c89d

Please sign in to comment.