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

Looks way better than String concatenation
This commit is contained in:
2023-01-15 02:13:35 +01:00
parent 528940a9d1
commit 14d2505dac

View File

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