Skip to content

Commit 3bac186

Browse files
authored
Fix the layout issue in the donation message (#21184)
The emoji might not render correctly for Windows users.
1 parent d04c0dd commit 3bac186

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

modules/openapi-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -959,11 +959,11 @@ public void setOpenAPI(OpenAPI openAPI) {
959959
@Override
960960
@SuppressWarnings("static-method")
961961
public void postProcess() {
962-
System.out.println("################################################################################");
963-
System.out.println("# Thanks for using OpenAPI Generator. #");
964-
System.out.println("# Please consider donation to help us maintain this project \uD83D\uDE4F #");
965-
System.out.println("# https://opencollective.com/openapi_generator/donate #");
966-
System.out.println("################################################################################");
962+
System.out.println("############################################################################################");
963+
System.out.println("# Thanks for using OpenAPI Generator. #");
964+
System.out.println("# We appreciate your support! Please consider donation to help us maintain this project. #");
965+
System.out.println("# https://opencollective.com/openapi_generator/donate #");
966+
System.out.println("############################################################################################");
967967
}
968968

969969
// override with any special post-processing

0 commit comments

Comments
 (0)