Skip to content

Commit e81626e

Browse files
christophpurrermeta-codesync[bot]
authored andcommitted
Expose MultiPostProcessor for testing (facebook#54296)
Summary: Pull Request resolved: facebook#54296 Changelog: [Internal] Reviewed By: lenaic Differential Revision: D85624761 fbshipit-source-id: 3adf5edafe7ed8bf416048a347a1fd9e60bfea2a
1 parent 916e53f commit e81626e

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/views/image/MultiPostprocessor.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import java.util.LinkedList
1818
internal class MultiPostprocessor private constructor(postprocessors: List<Postprocessor>) :
1919
Postprocessor {
2020

21-
private val postprocessors: List<Postprocessor> = LinkedList(postprocessors)
21+
internal val postprocessors: List<Postprocessor> = LinkedList(postprocessors)
2222

2323
override fun getName(): String = "MultiPostProcessor (${postprocessors.joinToString(",")})"
2424

0 commit comments

Comments
 (0)