remove error message (#20623)

This commit is contained in:
martin-mfg 2025-02-09 14:52:51 +01:00 committed by GitHub
parent 01fa58a763
commit ba0456aa91
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3726,11 +3726,6 @@ public class DefaultCodegen implements CodegenConfig {
}
}
for (String r : required) {
if (!properties.containsKey(r)) {
LOGGER.error("Required var {} not in properties", r);
}
}
return;
}