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.
2 parents 860b551 + 7db67aa commit d2df310Copy full SHA for d2df310
modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/JavaClientCodegen.java
@@ -152,6 +152,10 @@ public void processOpts() {
152
this.setSerializableModel(Boolean.valueOf((String)additionalProperties.get(CodegenConstants.SERIALIZABLE_MODEL).toString()));
153
}
154
155
+ if (additionalProperties.containsKey(CodegenConstants.LIBRARY)) {
156
+ this.setLibrary((String) additionalProperties.get(CodegenConstants.LIBRARY));
157
+ }
158
+
159
// need to put back serializableModel (boolean) into additionalProperties as value in additionalProperties is string
160
additionalProperties.put(CodegenConstants.SERIALIZABLE_MODEL, serializableModel);
161
0 commit comments