Text block can be used
Reports String
concatenations that can be simplified by replacing them with text blocks.
Requirements:
\n
occurs two or more times.Text blocks are not concatenated.
Use the Report single string literals option to highlight single literals containing line breaks. The quick-fix will still be available even when this option is disabled.
Example:
String html = "<html>\n" +
" <body>\n" +
" <p>Hello, world</p>\n" +
" </body>\n" +
"</html>\n";
After the quick-fix is applied:
String html = """
<html>
<body>
<p>Hello, world</p>
</body>
</html>
""";
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
TextBlockMigration
This inspection depends on the Java feature 'Text block literals', which is available since Java 15.
New in 2019.3
Here you can find the description of settings available for the Text block can be used inspection, and the reference of their default values.
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Java, 243.23126 |
Thanks for your feedback!