Skip to content

Commit

Permalink
Spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacSweers committed Nov 16, 2023
1 parent 1d73cb6 commit 13dab64
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main/kotlin/com/slack/auto/value/kotlin/AvkBuilder.kt
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,10 @@ public data class AvkBuilder(

if (propertyBuilder != null) {
val builderPropSpec =
PropertySpec.builder(builderProp.builderPropName, propertyBuilder.returnType.copy(nullable = true))
PropertySpec.builder(
builderProp.builderPropName,
propertyBuilder.returnType.copy(nullable = true)
)
.addModifiers(PRIVATE)
.mutable()
.initializer("null")
Expand Down

0 comments on commit 13dab64

Please sign in to comment.