diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-11-04 09:35:33 +0000 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-11-04 15:43:09 +0100 |
commit | 96256bd5936e129c5bb6d87395ef9006f3dc3956 (patch) | |
tree | 6786b357f7813642f195aafee742752f874e165d /compilerplugins/clang | |
parent | 6427bf87360a97f41ae351feaa35975c868260ec (diff) |
copy_paste_error: "clazz" looks like a copy-paste error
Change-Id: Idc87fcca5da166a532792516277d8199c2558de5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105283
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'compilerplugins/clang')
-rwxr-xr-x | compilerplugins/clang/mergeclasses.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/mergeclasses.py b/compilerplugins/clang/mergeclasses.py index 662808640660..c859ef8daf0d 100755 --- a/compilerplugins/clang/mergeclasses.py +++ b/compilerplugins/clang/mergeclasses.py @@ -70,7 +70,7 @@ with open("compilerplugins/clang/mergeclasses.results", "wt") as f: continue otherclazz = next(iter(parentChildDict[clazz])) if clazz == "svl::IUndoManager": print extractModuleName(clazz) - if clazz == "svl::IUndoManager": print extractModuleName(otherclazz) + if otherclazz == "svl::IUndoManager": print extractModuleName(otherclazz) # exclude combinations that span modules because we often use those to make cross-module dependencies more manageable. if extractModuleName(clazz) != extractModuleName(otherclazz): continue |