Skip to content

Commit

Permalink
🔨 ktlint 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
JeonK1 committed Sep 22, 2024
1 parent 4c41b51 commit 226eaa8
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ fun Modifier.capturable(controller: CaptureController): Modifier {

@SuppressLint("ModifierNodeInspectableProperties")
private data class CapturableModifierNodeElement(
private val controller: CaptureController
private val controller: CaptureController,
) : ModifierNodeElement<CapturableModifierNode>() {
override fun create(): CapturableModifierNode {
return CapturableModifierNode(controller)
Expand All @@ -62,7 +62,7 @@ private data class CapturableModifierNodeElement(
}

private class CapturableModifierNode(
controller: CaptureController
controller: CaptureController,
) : DelegatingNode(), DelegatableNode {

/**
Expand Down Expand Up @@ -135,7 +135,7 @@ private class CapturableModifierNode(
pictureDrawn.complete(Unit)
}
}
}
},
)
// Wait until picture is drawn
pictureDrawn.await()
Expand All @@ -159,7 +159,7 @@ class CaptureController {

internal class CaptureRequest(
val imageBitmapDeferred: CompletableDeferred<Bitmap>,
val config: Bitmap.Config
val config: Bitmap.Config,
)
}

Expand Down

0 comments on commit 226eaa8

Please sign in to comment.