@@ -82,9 +82,9 @@ public StaticHtml2Generator() {
8282 cliOptions .add (new CliOption (CodegenConstants .ARTIFACT_VERSION , CodegenConstants .ARTIFACT_VERSION_DESC ));
8383
8484 additionalProperties .put ("appName" , "OpenAPI Sample" );
85- additionalProperties .put ("appDescription" , "A sample openapi server" );
85+ additionalProperties .put ("appDescription" , "A sample OpenAPI server" );
8686 additionalProperties .put ("infoUrl" , "https://openapi-generator.tech" );
87- additionalProperties .put ("infoEmail" , "contributors @openapitools.org" );
87+ additionalProperties .put ("infoEmail" , "team @openapitools.org" );
8888 additionalProperties .put ("licenseInfo" , "All rights reserved" );
8989 additionalProperties .put ("licenseUrl" , "http://apache.org/licenses/LICENSE-2.0.html" );
9090 additionalProperties .put (CodegenConstants .INVOKER_PACKAGE , invokerPackage );
@@ -180,7 +180,7 @@ public void preprocessOpenAPI(OpenAPI openAPI) {
180180
181181 Map <String , Object > vendorExtensions = openAPI .getExtensions ();
182182 if (vendorExtensions != null ) {
183- for (Map .Entry <String , Object > vendorExtension : vendorExtensions .entrySet ()) {
183+ for (Map .Entry <String , Object > vendorExtension : vendorExtensions .entrySet ()) {
184184 // Vendor extensions could be Maps (objects). If we wanted to iterate through them in our template files
185185 // without knowing the keys beforehand, the default `toString` method renders them unusable. Instead, we
186186 // convert them to JSON strings now, which means we can easily use them later.
0 commit comments