Inspectopedia 2025.3 Help

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> """;

Locating this inspection

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
Via Settings dialog

Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.

Settings or Preferences | Editor | Inspections | Java | Java language level migration aids | Java 15

This inspection depends on the Java feature 'Text block literals', which is available since Java 15.

Inspection ID: TextBlockMigration

New in 2019.3

Inspection options

Here you can find the description of settings available for the Text block can be used inspection, and the reference of their default values.

Report single string literals

Option ID:

mySuggestLiteralReplacement

Default value:

Not selected

Suppressing Inspection

You can suppress this inspection by placing the following comment marker before the code fragment where you no longer want messages from this inspection to appear:

//noinspection TextBlockMigration

More detailed instructions as well as other ways and options that you have can be found in the product documentation:

Inspection Details

By default bundled with:

IntelliJ IDEA 2025.3, Qodana for JVM 2025.3,

Last modified: 03 December 2025