Branch: refs/heads/claude/clever-feynman-3k8wrl-judgement Home: https://github.com/xwiki/xwiki-platform Commit: 34f6fc8ab792146972339ba1ef25978d0e09d3d0 https://github.com/xwiki/xwiki-platform/commit/34f6fc8ab792146972339ba1ef259... Author: Vincent Massol <[email protected]> Date: 2026-08-18 (Tue, 18 Aug 2026) Changed paths: M xwiki-platform-core/xwiki-platform-web/xwiki-platform-web-war/src/main/webapp/resources/js/xwiki/panelwizard/panelWizard.js M xwiki-platform-core/xwiki-platform-web/xwiki-platform-web-war/src/main/webapp/resources/uicomponents/extension/extension.js Log Message: ----------- [Misc] Fix SonarQube JavaScript issues needing a judgement call * panelWizard.js: use ChildNode.remove()/replaceWith() instead of Node.removeChild()/replaceChild() (javascript:S7762, javascript:S7768). Behaviour-preserving only because the node is always a child of the node the call is made on; unlike removeChild(), remove() is silent when it is not. * extension.js: use a default parameter instead of reassigning the parameter (javascript:S7760). A default parameter only applies to "undefined", where "timeout || 1" also replaced 0 and null. Co-Authored-By: Vincent Massol <[email protected]> To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-platform/settings/notifications