Skip to content

Commit d2912e7

Browse files
mdvaccafacebook-github-bot
authored andcommitted
EZ fix naming in kotlin file (#53109)
Summary: Pull Request resolved: #53109 EZ fix naming in kotlin file changelog: [internal] internal Reviewed By: cortinico, shwanton, mlord93 Differential Revision: D79735705 fbshipit-source-id: b1061a9aa0f245de29efb1b0f3d6c9ada9c43660
1 parent 7d6d0a7 commit d2912e7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/react-native/ReactAndroid/src/main/java/com/facebook/react/uimanager/ViewManagerPropertyUpdater.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,16 +143,16 @@ public object ViewManagerPropertyUpdater {
143143
private class FallbackViewManagerSetter<V : View>(
144144
viewManagerClass: Class<out ViewManager<V, *>>
145145
) : ViewManagerSetter<ViewManager<V, *>, V> {
146-
private val mPropSetters: Map<String, PropSetter> =
146+
private val propSetters: Map<String, PropSetter> =
147147
ViewManagersPropertyCache.getNativePropSettersForViewManagerClass(viewManagerClass)
148148

149149
override fun setProperty(manager: ViewManager<V, *>, view: V, name: String, value: Any?) {
150-
val setter = mPropSetters[name]
150+
val setter = propSetters[name]
151151
setter?.updateViewProp(manager, view, value)
152152
}
153153

154154
override fun getProperties(props: MutableMap<String, String>) {
155-
for (setter in mPropSetters.values) {
155+
for (setter in propSetters.values) {
156156
props[setter.propName] = setter.propType
157157
}
158158
}

0 commit comments

Comments
 (0)