Skip to content

Commit

Permalink
[0.76] Update ReactNativeFlipper deprecation to ERROR (#46840)
Browse files Browse the repository at this point in the history
  • Loading branch information
cortinico authored Oct 7, 2024
1 parent 2da46a8 commit 531657b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ import com.facebook.react.ReactInstanceManager
message =
"ReactNative/Flipper integration is deprecated. Please remove the call to initializeFlipper from your MainApplication.java",
replaceWith = ReplaceWith(""),
level = DeprecationLevel.WARNING)
level = DeprecationLevel.ERROR)
public object ReactNativeFlipper {
@Suppress("UNUSED_PARAMETER")
@JvmStatic
@Deprecated(
message =
"ReactNative/Flipper integration is deprecated. Please remove the call to initializeFlipper from your MainApplication.java",
replaceWith = ReplaceWith(""),
level = DeprecationLevel.WARNING)
level = DeprecationLevel.ERROR)
public fun initializeFlipper(context: Context, reactInstanceManager: ReactInstanceManager) {
// no-op
}
Expand Down

0 comments on commit 531657b

Please sign in to comment.