From 064ce66a5b82cbc53add521838d6609d2874eb66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bargull?= Date: Thu, 21 Dec 2017 12:08:13 -0800 Subject: [PATCH] Remove unused return value for testOption --- harness/testIntl.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/harness/testIntl.js b/harness/testIntl.js index 3f04db24f1..d799ecd88e 100644 --- a/harness/testIntl.js +++ b/harness/testIntl.js @@ -638,7 +638,6 @@ function isCanonicalizedStructurallyValidLanguageTag(locale) { * @param {boolean} noReturn whether the resulting value of the property is not returned. * @param {boolean} isILD whether the resulting value of the property is implementation and locale dependent. * @param {object} extra additional option to pass along, properties are value -> {option: value}. - * @return {boolean} whether the test succeeded. */ function testOption(Constructor, property, type, values, fallback, testOptions) { var isOptional = testOptions !== undefined && testOptions.isOptional === true; @@ -750,8 +749,6 @@ function testOption(Constructor, property, type, values, fallback, testOptions) } } } - - return true; }