From 12acba7975a7f011bc4d45a34b3e1be4c0687b00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20Maih=C3=B6fer?= Date: Mon, 9 Dec 2024 12:29:44 +0100 Subject: [PATCH] remove debug --- shared/api/utils/shared_ops_util.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/shared/api/utils/shared_ops_util.js b/shared/api/utils/shared_ops_util.js index c1fdb39..56d9731 100644 --- a/shared/api/utils/shared_ops_util.js +++ b/shared/api/utils/shared_ops_util.js @@ -3513,15 +3513,11 @@ export default class SharedOpsUtil extends SharedUtil if (updateOld) this._docsUtil.updateOpDocs(oldName); const newOpDocs = this._docsUtil.updateOpDocs(newName); - console.log("REMOVEOLD", oldName, newName, removeOld); if (removeOld) { const versionNumbers = this.getOpVersionNumbers(oldName, newOpDocs); - const opnameWithoutVersion = this.getOpNameWithoutVersion(oldName); - console.log("REMOVEOLD", opnameWithoutVersion, newName, versionNumbers); versionNumbers.forEach((version) => { - console.log("UPDATING", version.name); this._docsUtil.updateOpDocs(version.name); }); }