You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should remove it in all sourcesets, except commonMain, androidMain
Example:
// foundation module
@OptIn(ExperimentalFoundationApi::class) // it is no longer needed
class SomeClass
// material module
@OptIn(ExperimentalFoundationApi::class) // still needed (and shouldn't be used to keep backward compatibility)
class SomeClass
The text was updated successfully, but these errors were encountered:
igordmn
changed the title
Remove redundant @OptIn of experimental annotation in the same module
Remove redundant @OptIn of experimental annotations in the same module
Jul 18, 2023
igordmn
changed the title
Remove redundant @OptIn of experimental annotations in the same module
Compose sources. Remove redundant @OptIn of experimental annotations in the same module
Jul 18, 2023
## Proposed Change
Remove the annotation usage of ExperimentalComposeWebAPI from html core and integeration-core modules as this is no longer required
## Issues Fixed
Fixes: JetBrains#3364
After JetBrains/compose-multiplatform-core#687 it is no longer required.
We should remove it in all sourcesets, except commonMain, androidMain
Example:
The text was updated successfully, but these errors were encountered: