From c30ccae0b66513c8b13e1aae03307500a6ee7945 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Mon, 22 Apr 2019 16:33:07 -0700 Subject: mesonlib: Remove useless repetition of the same check due to refactoring this is now useless. --- mesonbuild/mesonlib.py | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/mesonbuild/mesonlib.py b/mesonbuild/mesonlib.py index 7b9aa1e4b..1d1e619f0 100644 --- a/mesonbuild/mesonlib.py +++ b/mesonbuild/mesonlib.py @@ -548,16 +548,7 @@ class Version: # sort a non-digit sequence before a digit sequence ours_is_int = isinstance(ours, int) if ours_is_int != isinstance(theirs, int): - return 1 if isinstance(ours, int) else -1 - - # compare as numbers - if ours_is_int: - # because leading zeros have already been removed, if one number - # has more digits, it is greater - c = cmp(ours, theirs) - if c != 0: - return c - # fallthrough + return 1 if ours_is_int else -1 # compare lexicographically c = cmp(ours, theirs) -- cgit v1.2.3