We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
qlgen.py
1 parent e29fe54 commit 9c7eec5Copy full SHA for 9c7eec5
swift/codegen/generators/qlgen.py
@@ -157,9 +157,7 @@ def get_types_used_by(cls: ql.Class) -> typing.Iterable[str]:
157
158
159
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
+ return sorted(set(t for t in get_types_used_by(cls) if t[0].isupper() and t != cls.name))
163
164
165
_generated_stub_re = re.compile(r"\n*private import .*\n+class \w+ extends Generated::\w+ \{[ \n]?\}", re.MULTILINE)
0 commit comments