Fix typo in ReadableMapKeySetIterator.

Differential Revision: D2564759

fb-gh-sync-id: 6a57fb71d4da1d467661a3ae786f637172b21e73
This commit is contained in:
Krzysztof Magiera
2015-10-21 04:11:37 -07:00
committed by facebook-github-bot-5
parent f1ab581337
commit e1b2c84a81
7 changed files with 14 additions and 14 deletions

View File

@@ -17,7 +17,7 @@ import java.util.Map;
import com.facebook.csslayout.CSSNode;
import com.facebook.infer.annotation.Assertions;
import com.facebook.react.bridge.ReadableMap;
import com.facebook.react.bridge.ReadableMapKeySeyIterator;
import com.facebook.react.bridge.ReadableMapKeySetIterator;
/**
* Base node class for representing virtual tree of React nodes. Shadow nodes are used primarily
@@ -166,7 +166,7 @@ public class ReactShadowNode extends CSSNode {
Map<String, ViewManagersPropertyCache.PropSetter> propSetters =
ViewManagersPropertyCache.getNativePropSettersForShadowNodeClass(getClass());
ReadableMap propMap = props.mBackingMap;
ReadableMapKeySeyIterator iterator = propMap.keySetIterator();
ReadableMapKeySetIterator iterator = propMap.keySetIterator();
while (iterator.hasNextKey()) {
String key = iterator.nextKey();
ViewManagersPropertyCache.PropSetter setter = propSetters.get(key);