Remove redundant parenthesis (#766)

An excellent change. Top notch.
This commit is contained in:
Jake Wharton
2025-03-03 09:40:15 -05:00
committed by GitHub
parent 8957294eff
commit d26b4e7b3c
2 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ private class RealTestMosaic<T>(
mosaic.setContent(content)
}
override fun setContentAndSnapshot(content: @Composable (() -> Unit)): T {
override fun setContentAndSnapshot(content: @Composable () -> Unit): T {
setContent(content)
check(hasChanges)
hasChanges = false