mirror of
https://github.com/github/codeql.git
synced 2026-05-04 05:05:12 +02:00
Swift: remove debug print from qlgen.py
This commit is contained in:
@@ -157,9 +157,7 @@ def get_types_used_by(cls: ql.Class) -> typing.Iterable[str]:
|
||||
|
||||
|
||||
def get_classes_used_by(cls: ql.Class) -> typing.List[str]:
|
||||
ret = sorted(set(t for t in get_types_used_by(cls) if t[0].isupper() and t != cls.name))
|
||||
print(cls.name, ret)
|
||||
return ret
|
||||
return sorted(set(t for t in get_types_used_by(cls) if t[0].isupper() and t != cls.name))
|
||||
|
||||
|
||||
_generated_stub_re = re.compile(r"\n*private import .*\n+class \w+ extends Generated::\w+ \{[ \n]?\}", re.MULTILINE)
|
||||
|
||||
Reference in New Issue
Block a user