I have seen a few times a method call is called tw...
# compose
e
I have seen a few times a method call is called twice like this https://cs.android.com/androidx/platform/frameworks/support/+/androidx-main:compose/[…]/runtime/Composer.kt;l=1742?q=internal%20class%20ComposerImpl or this https://cs.android.com/androidx/platform/frameworks/support/+/androidx-main:compose/[…]ime/Composer.kt;l=1235-1237?q=internal%20class%20ComposerImpl (not consecutive, but somehow a method is called twice. Maybe it is legit due to internal state change) Not sure it is a bug or something hidden inside?
a
They are corresponding to the count of
startGroup()
calls in
startProviders()
and
startRoot()
.
🙏 1
1
e
I see, thanks (it would be nice if there is a more detailed doc for the
endGroup
call though).