summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@gmail.com>2017-06-26 22:46:59 +0200
committerwolfbeast <mcwerewolf@gmail.com>2018-02-03 17:36:38 +0100
commit0565262ff06f5d4d15aa712fb12337fbb26ec8b7 (patch)
treea2bb015f9c94797e70f8cf477711334855d48866 /js
parent1cac08b9a2d2171593fc6737e1b649d81ff39784 (diff)
downloadUXP-0565262ff06f5d4d15aa712fb12337fbb26ec8b7.tar
UXP-0565262ff06f5d4d15aa712fb12337fbb26ec8b7.tar.gz
UXP-0565262ff06f5d4d15aa712fb12337fbb26ec8b7.tar.lz
UXP-0565262ff06f5d4d15aa712fb12337fbb26ec8b7.tar.xz
UXP-0565262ff06f5d4d15aa712fb12337fbb26ec8b7.zip
Remove "has-gczeal" property.
Diffstat (limited to 'js')
-rw-r--r--js/src/builtin/TestingFunctions.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/js/src/builtin/TestingFunctions.cpp b/js/src/builtin/TestingFunctions.cpp
index 92517df03..6765a05f3 100644
--- a/js/src/builtin/TestingFunctions.cpp
+++ b/js/src/builtin/TestingFunctions.cpp
@@ -188,10 +188,6 @@ GetBuildConfiguration(JSContext* cx, unsigned argc, Value* vp)
if (!JS_SetProperty(cx, info, "tsan", value))
return false;
- value = BooleanValue(false);
- if (!JS_SetProperty(cx, info, "has-gczeal", value))
- return false;
-
#ifdef JS_MORE_DETERMINISTIC
value = BooleanValue(true);
#else