From a896529c9ef104b5860c42afffb23529a1579b3f Mon Sep 17 00:00:00 2001 From: Florian Vogt Date: Mon, 4 Apr 2022 17:02:05 +0200 Subject: [PATCH] adjust jsdoc return value remove --- lib/tasks/TaskUtil.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/tasks/TaskUtil.js b/lib/tasks/TaskUtil.js index 97e8d2742..9096414f5 100644 --- a/lib/tasks/TaskUtil.js +++ b/lib/tasks/TaskUtil.js @@ -113,8 +113,8 @@ class TaskUtil { * If no option with the given key is stored, undefined is returned. * * @param {string} key The option key - * @returns {object|undefined} The build option (or undefined) - * @public + * @returns {any|undefined} The build option (or undefined) + * @private */ getBuildOption(key) { return this._projectBuildContext.getOption(key);