diff options
author | Stephan Bergmann <stephan.bergmann@allotropia.de> | 2024-08-30 16:24:43 +0200 |
---|---|---|
committer | Stephan Bergmann <stephan.bergmann@allotropia.de> | 2024-08-30 22:34:29 +0200 |
commit | 1732bf1c47d7b53cee55097620aa574ab78d85b8 (patch) | |
tree | 296f6b79ba7c2733db1f3ee135539a42a48ca8a2 /static | |
parent | 68f4eaa3135e77924f6bf76eed90ca212462d3ae (diff) |
Consistenly terminate statements with semicolons in JS code
Change-Id: Ie52917f6f487f5de2d67179f67f2935a1f6c838a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/172662
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <stephan.bergmann@allotropia.de>
Diffstat (limited to 'static')
-rw-r--r-- | static/emscripten/uno.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/emscripten/uno.js b/static/emscripten/uno.js index af1f20dd5cdb..fb634cc63c9d 100644 --- a/static/emscripten/uno.js +++ b/static/emscripten/uno.js @@ -79,7 +79,7 @@ Module.unoObject = function(interfaces, obj) { const bases = Module.uno.com.sun.star.reflection.XInterfaceTypeDescription2.query(td) .getBaseTypes(); for (let i = 0; i !== bases.size(); ++i) { - walk(bases.get(i), impl) + walk(bases.get(i), impl); } bases.delete(); } |