src: remove redundant symbol init in node_file.cc

Don't lazy-init the oncomplete symbol string in the After() function,
it has already been created at module init time.
archived-io.js-v0.10
Ben Noordhuis 2013-08-14 17:45:40 +02:00
parent d2b80b8a60
commit d684f50acb
1 changed files with 0 additions and 3 deletions

View File

@ -209,9 +209,6 @@ static void After(uv_fs_t *req) {
}
}
if (oncomplete_sym.IsEmpty()) {
oncomplete_sym = FIXED_ONE_BYTE_STRING(node_isolate, "oncomplete");
}
MakeCallback(req_wrap->object(), oncomplete_sym, argc, argv);
uv_fs_req_cleanup(&req_wrap->req_);