From b5c1c146f5c5ba39435cf9488488803dd401607a Mon Sep 17 00:00:00 2001 From: Gabriel Schulhof Date: Wed, 25 Apr 2018 13:15:50 -0400 Subject: [PATCH] n-api,test: remove superfluous persistent Remove a superfluos persistent from test_constructor_name.c. PR-URL: https://github.com/nodejs/node/pull/20299 Reviewed-By: Anna Henningsen Reviewed-By: Colin Ihrig --- test/addons-napi/test_constructor/test_constructor_name.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/addons-napi/test_constructor/test_constructor_name.c b/test/addons-napi/test_constructor/test_constructor_name.c index b30ea4333747d3..e12deb80d23af8 100644 --- a/test/addons-napi/test_constructor/test_constructor_name.c +++ b/test/addons-napi/test_constructor/test_constructor_name.c @@ -1,8 +1,6 @@ #include #include "../common.h" -napi_ref constructor_; - static napi_value New(napi_env env, napi_callback_info info) { napi_value _this; NAPI_CALL(env, napi_get_cb_info(env, info, NULL, NULL, &_this, NULL)); @@ -14,9 +12,6 @@ static napi_value Init(napi_env env, napi_value exports) { napi_value cons; NAPI_CALL(env, napi_define_class( env, "MyObject_Extra", 8, New, NULL, 0, NULL, &cons)); - - NAPI_CALL(env, - napi_create_reference(env, cons, 1, &constructor_)); return cons; }