tdf#158803 unncessary semicolons

Change-Id: I1f4fc8661e31d7e17f4fd59988e15635f3318dc2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165380
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
This commit is contained in:
LeSasse 2024-03-27 09:53:25 +01:00 committed by Noel Grandin
parent 2db078c582
commit d305470db4

View file

@ -130,10 +130,10 @@ def insert_code_in_sw_model(repoPath, modelTestRelPath):
addText = False
if addText and 'reload' in line:
modelTestLines.insert( i - 1, 'int nImportPages = getPages();int nImportShapes = getShapes();\n');
modelTestLines.insert( i - 1, 'int nImportPages = getPages();int nImportShapes = getShapes();\n')
modelTestLines.insert( i + 2, 'int nExportPages = getPages();int nExportShapes = getShapes();SAL_' + \
'DEBUG("PAGES - " << filename << " - " << nImportPages << " - " << nExportPages);SAL_' + \
'DEBUG("SHAPES - " << filename << " - " << nImportShapes << " - " << nExportShapes);\n');
'DEBUG("SHAPES - " << filename << " - " << nImportShapes << " - " << nExportShapes);\n')
addText = False
modelTestFile = open(modelTestPath, 'w')