Skip to content

Commit 5d5e191

Browse files
committed
EZ fix naming in kotlin file (facebook#53109)
Summary: Pull Request resolved: facebook#53109 EZ fix naming in kotlin file changelog: [internal] internal Reviewed By: cortinico, shwanton, mlord93 Differential Revision: D79735705
1 parent 6ce7215 commit 5d5e191

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
@@ -147,16 +147,16 @@ public object ViewManagerPropertyUpdater {
147147
private class FallbackViewManagerSetter<V : View>(
148148
viewManagerClass: Class<out ViewManager<V, *>>
149149
) : ViewManagerSetter<ViewManager<V, *>, V> {
150-
private val mPropSetters: Map<String, PropSetter> =
150+
private val propSetters: Map<String, PropSetter> =
151151
ViewManagersPropertyCache.getNativePropSettersForViewManagerClass(viewManagerClass)
152152

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

158158
override fun getProperties(props: MutableMap<String, String>) {
159-
for (setter in mPropSetters.values) {
159+
for (setter in propSetters.values) {
160160
props[setter.propName] = setter.propType
161161
}
162162
}

0 commit comments

Comments
 (0)