Removed unreachable code as == never throws.

pull/2070/head
Jussi Pakkanen 7 years ago
parent b5db2d3128
commit fff3ded297
  1. 7
      mesonbuild/interpreter.py

@ -2808,11 +2808,8 @@ different subdirectory.
found = self.check_contains(element, args)
if found:
return True
try:
if element == item:
return True
except Exception:
pass
if element == item:
return True
return False
def is_subproject(self):

Loading…
Cancel
Save