Reports redundant embedded expressions in STR templates, such as trivial literals or empty expressions.

Example:


  System.out.println(STR."Hello \{"world"}");

After the quick-fix is applied:


  System.out.println(STR."Hello world");

New in 2023.3