mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-28 20:25:33 +08:00
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:
committed by
facebook-github-bot-4
parent
ee533037f6
commit
3e89c3ea3b
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user