-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreact-native-reanimated+3.6.0.patch
37 lines (36 loc) · 1.91 KB
/
react-native-reanimated+3.6.0.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
diff --git a/node_modules/react-native-reanimated/android/src/reactNativeVersionPatch/ReanimatedUIManager/latest/com/swmansion/reanimated/layoutReanimation/ReanimatedUIManager.java b/node_modules/react-native-reanimated/android/src/reactNativeVersionPatch/ReanimatedUIManager/latest/com/swmansion/reanimated/layoutReanimation/ReanimatedUIManager.java
index 2c6cb18..256906f 100644
--- a/node_modules/react-native-reanimated/android/src/reactNativeVersionPatch/ReanimatedUIManager/latest/com/swmansion/reanimated/layoutReanimation/ReanimatedUIManager.java
+++ b/node_modules/react-native-reanimated/android/src/reactNativeVersionPatch/ReanimatedUIManager/latest/com/swmansion/reanimated/layoutReanimation/ReanimatedUIManager.java
@@ -90,32 +90,6 @@ public class ReanimatedUIManager extends UIManagerModule {
super.setChildren(viewTag, childrenTags);
}
- /**
- * Replaces the View specified by oldTag with the View specified by newTag within oldTag's parent.
- * This resolves to a simple {@link #manageChildren} call, but React doesn't have enough info in
- * JS to formulate it itself.
- *
- * @deprecated This method will not be available in Fabric UIManager class.
- */
- @ReactMethod
- @Deprecated
- public void replaceExistingNonRootView(int oldTag, int newTag) {
- super.replaceExistingNonRootView(oldTag, newTag);
- }
-
- /**
- * Method which takes a container tag and then releases all subviews for that container upon
- * receipt.
- *
- * @param containerTag the tag of the container for which the subviews must be removed
- * @deprecated This method will not be available in Fabric UIManager class.
- */
- @ReactMethod
- @Deprecated
- public void removeSubviewsFromContainerWithID(int containerTag) {
- super.removeSubviewsFromContainerWithID(containerTag);
- }
-
/**
* Determines the location on screen, width, and height of the given view and returns the values
* via an async callback.