Skip to content

Commit 9c7eec5

Browse files
committed
Swift: remove debug print from qlgen.py
1 parent e29fe54 commit 9c7eec5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

swift/codegen/generators/qlgen.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,9 +157,7 @@ def get_types_used_by(cls: ql.Class) -> typing.Iterable[str]:
157157

158158

159159
def get_classes_used_by(cls: ql.Class) -> typing.List[str]:
160-
ret = sorted(set(t for t in get_types_used_by(cls) if t[0].isupper() and t != cls.name))
161-
print(cls.name, ret)
162-
return ret
160+
return sorted(set(t for t in get_types_used_by(cls) if t[0].isupper() and t != cls.name))
163161

164162

165163
_generated_stub_re = re.compile(r"\n*private import .*\n+class \w+ extends Generated::\w+ \{[ \n]?\}", re.MULTILINE)

0 commit comments

Comments
 (0)