Skip to content

Commit

Permalink
Remove unnecessary trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
russellbanks committed Apr 26, 2022
1 parent dffcca7 commit ef5045a
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/main/kotlin/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ fun main() = auroraApplication {
timeAfterHashVisibility = false
}
},
sides = Sides(straightSides = Side.values().toSet()),
sides = Sides(straightSides = Side.values().toSet())
) {
LabelProjection(contentModel = LabelContentModel(text = item.algorithmName)).project()
}
Expand Down Expand Up @@ -190,9 +190,13 @@ fun main() = auroraApplication {
timeAfterHashVisibility = false
}
},
sides = Sides(straightSides = Side.values().toSet()),
sides = Sides(straightSides = Side.values().toSet())
) {
LabelProjection(contentModel = LabelContentModel(text = "${Unicode.bulletPoint} ${nestedItem.algorithmName}")).project()
LabelProjection(
contentModel = LabelContentModel(
text = "${Unicode.bulletPoint} ${nestedItem.algorithmName}"
)
).project()
}
}
}
Expand Down

0 comments on commit ef5045a

Please sign in to comment.