Skip to content

Commit f2c83bd

Browse files
committed
timers: remove unused Timer.setRepeat()
PR-URL: #2256 Reviewed-By: Trevor Norris <[email protected]>
1 parent 503b089 commit f2c83bd

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/timer_wrap.cc

-11
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ class TimerWrap : public HandleWrap {
4343

4444
env->SetProtoMethod(constructor, "start", Start);
4545
env->SetProtoMethod(constructor, "stop", Stop);
46-
env->SetProtoMethod(constructor, "setRepeat", SetRepeat);
4746
env->SetProtoMethod(constructor, "getRepeat", GetRepeat);
4847
env->SetProtoMethod(constructor, "again", Again);
4948

@@ -101,16 +100,6 @@ class TimerWrap : public HandleWrap {
101100
args.GetReturnValue().Set(err);
102101
}
103102

104-
static void SetRepeat(const FunctionCallbackInfo<Value>& args) {
105-
TimerWrap* wrap = Unwrap<TimerWrap>(args.Holder());
106-
107-
CHECK(HandleWrap::IsAlive(wrap));
108-
109-
int64_t repeat = args[0]->IntegerValue();
110-
uv_timer_set_repeat(&wrap->handle_, repeat);
111-
args.GetReturnValue().Set(0);
112-
}
113-
114103
static void GetRepeat(const FunctionCallbackInfo<Value>& args) {
115104
TimerWrap* wrap = Unwrap<TimerWrap>(args.Holder());
116105

0 commit comments

Comments
 (0)