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:
parent
2db078c582
commit
d305470db4
1 changed files with 2 additions and 2 deletions
|
@ -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')
|
||||
|
|
Loading…
Reference in a new issue