[ReactNative] Remove RCTJSTimers

Summary:
@public

Remove `RCTJSTimers.js`, the file was just an alias to `JSTimersExecution`.

Test Plan: Still builds.
This commit is contained in:
Tadeu Zagallo
2015-06-15 10:48:24 -07:00
parent 650fc9de4c
commit c30365acba
4 changed files with 4 additions and 22 deletions

View File

@@ -74,7 +74,7 @@
RCT_EXPORT_MODULE()
RCT_IMPORT_METHOD(RCTJSTimers, callTimers)
RCT_IMPORT_METHOD(JSTimersExecution, callTimers)
- (instancetype)init
{
@@ -153,7 +153,7 @@ RCT_IMPORT_METHOD(RCTJSTimers, callTimers)
// call timers that need to be called
if ([timersToCall count] > 0) {
[_bridge enqueueJSCall:@"RCTJSTimers.callTimers" args:@[timersToCall]];
[_bridge enqueueJSCall:@"JSTimersExecution.callTimers" args:@[timersToCall]];
}
if (_timers.count == 0) {