Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/env.h
diff options
context:
space:
mode:
authorBeth Griggs <Bethany.Griggs@uk.ibm.com>2020-09-25 01:02:33 +0300
committerMyles Borins <myles.borins@gmail.com>2020-10-01 04:46:25 +0300
commit4acab22ac2dd4d066c7d50eb1916e34af555eccf (patch)
tree82e145106a9e6b7b5bcc4fa215f14ccc73f32ba2 /src/env.h
parent869ded3b0e9b1f53b7161827bc2275a584881fc7 (diff)
Revert "src: runtime deprecate process.umask()"
This reverts commit 60c4c2b6c557efbb2f8f3a3de147baf987931d41. PR-URL: https://github.com/nodejs/node/pull/35332 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ruy Adorno <ruyadorno@github.com>
Diffstat (limited to 'src/env.h')
-rw-r--r--src/env.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/env.h b/src/env.h
index 16546fdd494..410d5c3fc9d 100644
--- a/src/env.h
+++ b/src/env.h
@@ -1160,8 +1160,6 @@ class Environment : public MemoryRetainer {
inline bool filehandle_close_warning() const;
inline void set_filehandle_close_warning(bool on);
- inline bool emit_insecure_umask_warning() const;
- inline void set_emit_insecure_umask_warning(bool on);
inline void set_source_maps_enabled(bool on);
inline bool source_maps_enabled() const;
@@ -1386,7 +1384,6 @@ class Environment : public MemoryRetainer {
bool emit_env_nonstring_warning_ = true;
bool emit_err_name_warning_ = true;
bool emit_filehandle_warning_ = true;
- bool emit_insecure_umask_warning_ = true;
bool source_maps_enabled_ = false;
size_t async_callback_scope_depth_ = 0;