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
Copy file name to clipboardExpand all lines: packages/react-native/ReactAndroid/src/main/java/com/facebook/react/animated/NativeAnimatedNodesManager.kt
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -381,15 +381,15 @@ public class NativeAnimatedNodesManager(
381
381
("connectAnimatedNodeToView: Animated node connected to view [${viewTag}] should be of type ${PropsAnimatedNode::class.java.name}"))
382
382
}
383
383
checkNotNull(reactApplicationContext) {
384
-
("connectAnimatedNodeToView: Animated node could not be connected, no ReactApplicationContext: ${viewTag}")
384
+
("connectAnimatedNodeToView: Animated node could not be connected, no ReactApplicationContext: $viewTag")
385
385
}
386
386
387
387
val uiManager =UIManagerHelper.getUIManagerForReactTag(reactApplicationContext, viewTag)
388
388
if (uiManager ==null) {
389
389
ReactSoftExceptionLogger.logSoftException(
390
390
TAG,
391
391
ReactNoCrashSoftException(
392
-
("connectAnimatedNodeToView: Animated node could not be connected to UIManager - uiManager disappeared for tag: ${viewTag}")))
392
+
("connectAnimatedNodeToView: Animated node could not be connected to UIManager - uiManager disappeared for tag: $viewTag")))
393
393
return
394
394
}
395
395
@@ -751,7 +751,7 @@ public class NativeAnimatedNodesManager(
751
751
val reason =if (cyclesDetected >0) ("cycles ($cyclesDetected)") else"disconnected regions"
752
752
val ex =
753
753
IllegalStateException(
754
-
("Looks like animated nodes graph has ${reason}, there are ${activeNodesCount} but toposort visited only ${updatedNodesCount}"))
754
+
("Looks like animated nodes graph has ${reason}, there are $activeNodesCount but toposort visited only $updatedNodesCount"))
755
755
if (eventListenerInitializedForFabric && cyclesDetected ==0) {
756
756
// TODO T71377544: investigate these SoftExceptions and see if we can remove entirely
0 commit comments