diff --git a/src/node_file.cc b/src/node_file.cc index 9e43961266e789..c4441bd1255a13 100644 --- a/src/node_file.cc +++ b/src/node_file.cc @@ -61,9 +61,6 @@ class FSReqWrap: public ReqWrap { }; -static Persistent encoding_symbol; -static Persistent errno_symbol; -static Persistent buf_symbol; static Persistent oncomplete_sym; @@ -951,10 +948,6 @@ void File::Initialize(Handle target) { NODE_SET_METHOD(target, "utimes", UTimes); NODE_SET_METHOD(target, "futimes", FUTimes); - - errno_symbol = NODE_PSYMBOL("errno"); - encoding_symbol = NODE_PSYMBOL("node:encoding"); - buf_symbol = NODE_PSYMBOL("__buf"); } void InitFs(Handle target) {