Use Java 15's new text blocks for Unicode logo
continuous-integration/drone/push Build is passing Details

Looks way better than String concatenation
This commit is contained in:
Bea 2023-01-15 02:13:35 +01:00
parent 528940a9d1
commit 14d2505dac
1 changed files with 8 additions and 7 deletions

View File

@ -14,13 +14,14 @@ public class FormatUtil
// cosmetic string to print on startup.
private static final String LOGO =
"██╗░░██╗██╗██████╗░███████╗██╗░░██╗░█████╗░\n" +
"██║░░██║██║██╔══██╗██╔════╝██║░██╔╝██╔══██╗\n" +
"███████║██║██║░░██║█████╗░░█████═╝░██║░░██║\n" +
"██╔══██║██║██║░░██║██╔══╝░░██╔═██╗░██║░░██║\n" +
"██║░░██║██║██████╔╝███████╗██║░╚██╗╚█████╔╝\n" +
"╚═╝░░╚═╝╚═╝╚═════╝░╚══════╝╚═╝░░╚═╝░╚════╝░";
private static final String LOGO = """
""";
/**