1
0
mirror of synced 2026-08-05 15:06:54 +00:00

chore: trim comments

This commit is contained in:
Yury Semikhatsky
2026-06-12 12:56:46 -07:00
parent 1d06a09651
commit 4fb8a95178
5 changed files with 4 additions and 9 deletions
@@ -997,7 +997,7 @@ class Interface extends TypeDefinition {
}
void writeTo(List<String> output, String offset) {
// Interfaces with a static factory method delegating to the Impl class, see Method.writeTo.
// Interfaces with a static factory method, see Method.writeTo.
if (asList("Playwright", "FormData", "RequestOptions").contains(jsonName) && methods.stream().anyMatch(m -> "create".equals(m.jsonName))) {
output.add("import com.microsoft.playwright.impl." + jsonName + "Impl;");
}