removed coalescingKey from events (2/7)

Summary:
This property was never used, so I'm removing it.

public
___
//This diff is part of a larger stack. For high level overview what's going on jump to D2884593.//

Reviewed By: javache

Differential Revision: D2884587

fb-gh-sync-id: acd5e576cd13a02e77225f3b308232f8331d3b61
This commit is contained in:
Martin Kralik
2016-02-03 05:22:12 -08:00
committed by facebook-github-bot-4
parent ee533037f6
commit 3e89c3ea3b
4 changed files with 1 additions and 10 deletions

View File

@@ -30,9 +30,7 @@ static NSNumber *RCTGetEventID(id<RCTEvent> event)
{
return @(
event.viewTag.intValue |
(((uint64_t)event.eventName.hash & 0xFFFF) << 32) |
(((uint64_t)event.coalescingKey) << 48)
);
(((uint64_t)event.eventName.hash & 0xFFFF) << 32));
}
@interface RCTEventDispatcher() <RCTFrameUpdateObserver>