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>
This commit is contained in:
Stephan Bergmann
2024-08-30 16:24:43 +02:00
parent 68f4eaa313
commit 1732bf1c47

View File

@@ -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();
}