From fb625716846ab7c2e26ab06199a467aa303979a8 Mon Sep 17 00:00:00 2001 From: James Sumners Date: Thu, 2 Nov 2023 09:05:24 -0400 Subject: [PATCH] chore: remove unused file This removes a source file that got re-added via a rebase. It seems somewhere around change set https://github.com/nodejs/node/commit/178dff255fa9bdfdd02c44b5707ef021747f8553 `entry_point.c` was removed, and rebase https://github.com/nodejs/node/pull/48740/commits/0b6e16f1ae3bb8a1c5afeb1496095b8d807ff4c7 added it back. The review of https://github.com/nodejs/node/pull/48740 overlooked this and the file got re-committed. --- test/js-native-api/test_cannot_run_js/entry_point.c | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 test/js-native-api/test_cannot_run_js/entry_point.c diff --git a/test/js-native-api/test_cannot_run_js/entry_point.c b/test/js-native-api/test_cannot_run_js/entry_point.c deleted file mode 100644 index 6b7b50a38c9535..00000000000000 --- a/test/js-native-api/test_cannot_run_js/entry_point.c +++ /dev/null @@ -1,7 +0,0 @@ -#include - -EXTERN_C_START -napi_value Init(napi_env env, napi_value exports); -EXTERN_C_END - -NAPI_MODULE(NODE_GYP_MODULE_NAME, Init)