·
Most text blocks should be indented to align with neighbouring Java code.
// ORIGINAL String code = """ String source = \"\"\" String message = "Hello, World!"; System.out.println(message); \"\"\"; """; // BETTER String code = """ String source = \""" String message = "Hello, World!"; System.out.println(message); \"""; """;