From d21c508b0abd67321c4c01d4a5ac23c10891272b Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Tue, 17 Apr 2018 08:00:11 +0200 Subject: [PATCH] Squish: Remove dead code Change-Id: Ic24c9db0b923409026d92b87b246694dde8968db Reviewed-by: Robert Loehning --- tests/system/shared/classes.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/tests/system/shared/classes.py b/tests/system/shared/classes.py index d06398a159b..c18173eea61 100644 --- a/tests/system/shared/classes.py +++ b/tests/system/shared/classes.py @@ -193,18 +193,6 @@ class Qt5Path: @staticmethod def __createPlatformQtPath__(qt5Minor): - # special handling for Qt5.2 - if qt5Minor == 2: - if platform.system() in ('Microsoft', 'Windows'): - return "C:/Qt/Qt5.2.1/5.2.1/msvc2010" - elif platform.system() == 'Linux': - if __is64BitOS__(): - return os.path.expanduser("~/Qt5.2.1/5.2.1/gcc_64") - else: - return os.path.expanduser("~/Qt5.2.1/5.2.1/gcc") - else: - return os.path.expanduser("~/Qt5.2.1/5.2.1/clang_64") - # Qt5.3+ if platform.system() in ('Microsoft', 'Windows'): return "C:/Qt/Qt5.%d.1" % qt5Minor else: