Skip to content

Commit 4db670c

Browse files
committed
Removed debug lines
1 parent 82dd33b commit 4db670c

File tree

1 file changed

+0
-2
lines changed
  • packages/node-addon-examples/tests/buffers

1 file changed

+0
-2
lines changed

packages/node-addon-examples/tests/buffers/addon.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,6 @@ static void deleteTheText(
130130
NODE_API_BASIC_ASSERT_RETURN_VOID(
131131
data != NULL && strcmp(data, theText) == 0, "invalid data");
132132

133-
printf("XDDDD");
134133
(void)finalize_hint;
135134
free(data);
136135
deleterCallCount++;
@@ -158,7 +157,6 @@ static napi_value newBuffer(napi_env env, napi_callback_info info) {
158157
}
159158

160159
static napi_value newExternalBuffer(napi_env env, napi_callback_info info) {
161-
printf("creating external buffer\n");
162160
napi_value theBuffer;
163161
char* theCopy = strdup(theText);
164162
NODE_API_ASSERT(

0 commit comments

Comments
 (0)