Refactored using IntelliJ

This commit is contained in:
UnlegitDqrk
2026-02-06 18:03:32 +01:00
parent 6c513c9436
commit 8829737d30
16 changed files with 880 additions and 823 deletions

View File

@@ -7,7 +7,8 @@ import java.nio.charset.StandardCharsets;
*/
public final class Html {
private Html() {}
private Html() {
}
/**
* Escapes text for HTML.
@@ -37,7 +38,7 @@ public final class Html {
* Simple page wrapper.
*
* @param title title
* @param body body html
* @param body body html
* @return full html
*/
public static String page(String title, String body) {