Skip to content

Commit a703d4c

Browse files
kocburakfacebook-github-bot
authored andcommitted
Typo fix in InterpolationAnimatedNode for debugging (#51460)
Summary: I noticed a missing debugging text while working on #50496. It was a typo. I though I might as well send a PR. ## Changelog: [Android] [Fixed] - Fixing a typo in InterpolationAnimatedNode for debug text. <!-- Help reviewers and the release process by writing your own changelog entry. Pick one each for the category and type tags: [ANDROID|GENERAL|IOS|INTERNAL] [BREAKING|ADDED|CHANGED|DEPRECATED|REMOVED|FIXED|SECURITY] - Message For more details, see: https://reactnative.dev/contributing/changelogs-in-pull-requests Pull Request resolved: #51460 Reviewed By: cortinico, shwanton Differential Revision: D75005096 Pulled By: javache fbshipit-source-id: 390452b2b0c6eabfa003b9c95719649c79444d3a
1 parent 3306c3b commit a703d4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-native/ReactAndroid/src/main/java/com/facebook/react/animated/InterpolationAnimatedNode.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ internal class InterpolationAnimatedNode(config: ReadableMap) : ValueAnimatedNod
9696
override fun getAnimatedObject(): Any? = objectValue
9797

9898
override fun prettyPrint(): String =
99-
"InterpolationAnimatedNode[$tag] super: {super.prettyPrint()}"
99+
"InterpolationAnimatedNode[$tag] super: ${super.prettyPrint()}"
100100

101101
companion object {
102102
const val EXTRAPOLATE_TYPE_IDENTITY: String = "identity"

0 commit comments

Comments
 (0)