Skip to content

Commit fdf59e4

Browse files
committed
docs: translate Korean comments to English in removeLinksFromAllOfChild method
1 parent a8e9f2b commit fdf59e4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/converters/PolymorphicModelConverter.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,12 +130,12 @@ else if (resolvedSchema.getProperties().containsKey(javaType.getRawClass().getSi
130130
private void removeLinksFromAllOfChild(ComposedSchema composedSchema) {
131131
List<Schema> allOf = composedSchema.getAllOf();
132132
if (allOf != null && allOf.size() > 1) {
133-
// allOf[0]는 부모 스키마 (allOf 첫 번째)
134-
// allOf[1+]는 자식의 고유 속성들 (allOf 두 번째부터)
133+
// allOf[0] is the parent schema (first element in allOf)
134+
// allOf[1+] are the child's own properties (second element onwards in allOf)
135135
for (int i = 1; i < allOf.size(); i++) {
136136
Schema childSchema = allOf.get(i);
137137
if (childSchema != null && childSchema.getProperties() != null) {
138-
// _links 제거 (부모로부터 상속됨)
138+
// Remove _links (inherited from parent)
139139
childSchema.getProperties().remove("_links");
140140
}
141141
}

0 commit comments

Comments
 (0)