From f202d1b44b0253e5680f72150e10fc7cbf7ba0da Mon Sep 17 00:00:00 2001 From: David Vacca Date: Sat, 30 Sep 2023 22:12:29 -0700 Subject: [PATCH] Reduce visibility of AnimatedNodeValueListener (#39727) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/39727 In an attempt to reduce footprint of React Native Android public APIs we are reducing visibility of classes and interfaces that are not meant to be used publicly OR are public but have no usages. As part of our analysis, which involved looking for usages inside the Meta codebase and code search in OSS, we've detected that this class/interface is public but it's not used from other packages. If you are using this class or interface please comment in this PR and we will restate the public access. changelog: [Android][Changed] Reducing visibility of AnimatedNodeValueListener Reviewed By: RSNara Differential Revision: D49752131 fbshipit-source-id: 153cf0cb97ceadfd4c6acde1e1b51d4243eb5df6 --- .../com/facebook/react/animated/AnimatedNodeValueListener.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/animated/AnimatedNodeValueListener.java b/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/animated/AnimatedNodeValueListener.java index 24ee0e662ddb07..512fda12ad8025 100644 --- a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/animated/AnimatedNodeValueListener.java +++ b/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/animated/AnimatedNodeValueListener.java @@ -8,6 +8,6 @@ package com.facebook.react.animated; /** Interface used to listen to {@link ValueAnimatedNode} updates. */ -public interface AnimatedNodeValueListener { +interface AnimatedNodeValueListener { void onValueUpdate(double value); }