You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/AbstractJavaCodegen.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2024,7 +2024,7 @@ public ModelsMap postProcessModels(ModelsMap objs) {
2024
2024
.filter(o -> this.xImplementsSkip.contains(o))
2025
2025
.collect(Collectors.toList());
2026
2026
if (!xImplementsInModelSkipped.isEmpty()) {
2027
-
LOGGER.info("Following interfaces configured via additional property '{}' will be skipped for model {}: {}", X_IMPLEMENTS_SKIP, cm.classname, xImplementsInModelSkipped);
2027
+
LOGGER.info("Following interfaces configured via config option '{}' will be skipped for model {}: {}", X_IMPLEMENTS_SKIP, cm.classname, xImplementsInModelSkipped);
@@ -2039,7 +2039,7 @@ public ModelsMap postProcessModels(ModelsMap objs) {
2039
2039
for (ModelMapmo : objs.getModels()) {
2040
2040
CodegenModelcm = mo.getModel();
2041
2041
if (this.schemaImplements.containsKey(cm.getSchemaName())) {
2042
-
LOGGER.info("Adding interface(s) {} configured via additional property '{}' to model {}", this.schemaImplements.get(cm.getSchemaName()), SCHEMA_IMPLEMENTS, cm.classname);
2042
+
LOGGER.info("Adding interface(s) {} configured via config option '{}' to model {}", this.schemaImplements.get(cm.getSchemaName()), SCHEMA_IMPLEMENTS, cm.classname);
0 commit comments