== Why is this an issue? If a string fits on a single line, without concatenation and escaped newlines, you should probably continue to use a string literal. === Noncompliant code example [source,java] ---- String question = """ What's the point, really?"""; ---- === Compliant solution [source,java] ---- String question = "What's the point, really?"; ---- == Resources * https://openjdk.java.net/jeps/378[JEP 378: Text Blocks] * https://openjdk.org/projects/amber/guides/text-blocks-guide[Programmer's Guide To Text Blocks], by Jim Laskey and Stuart Marks ifdef::env-github,rspecator-view[] ''' == Implementation Specification (visible only on this page) === Message Use simple literal for a single-line string. endif::env-github,rspecator-view[]