Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,9 @@ TimerHandle TimerManager::createRecurringTimer(
return timerID;
}

void TimerManager::deleteTimer(jsi::Runtime& runtime, TimerHandle timerHandle) {
void TimerManager::deleteTimer(
jsi::Runtime& /* runtime */,
TimerHandle timerHandle) {
if (timerHandle < 0) {
/**
* Do nothing for negative values to match web spec.
Expand All @@ -150,7 +152,7 @@ void TimerManager::deleteTimer(jsi::Runtime& runtime, TimerHandle timerHandle) {
}

void TimerManager::deleteRecurringTimer(
jsi::Runtime& runtime,
jsi::Runtime& /* runtime */,
TimerHandle timerHandle) {
if (timerHandle < 0) {
/**
Expand Down
Loading