Branch: refs/heads/master Home: https://github.com/xwiki/xwiki-platform Commit: 6196d6a4b10c9c5a82b750bce003a1e5c125fcf6 https://github.com/xwiki/xwiki-platform/commit/6196d6a4b10c9c5a82b750bce003a... Author: Vincent Massol <[email protected]> Date: 2026-06-07 (Sun, 07 Jun 2026) Changed paths: M xwiki-platform-core/xwiki-platform-uiextension/xwiki-platform-uiextension-api/src/main/java/org/xwiki/uiextension/script/UIExtensionScriptService.java Log Message: ----------- [Misc] Use String.replace() instead of String.replaceAll() in UIExtensionScriptService to fix a SonarQube issue * The pattern passed to replaceAll() is a plain literal (a single space) with no regular expression syntax, so compiling a regex is unnecessary overhead. Using String.replace() is clearer and more efficient and resolves the SonarQube java:S5361 issue. Co-authored-by: Claude <[email protected]> To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-platform/settings/notifications