末尾に空白文字があるテキストブロックを報告します。 末尾の空白は偶発的なものと考えられ、Java コンパイラーにより取り除かれます。

Example (where spaces are indicated with dots):


..String.count.=."""
....one
....two....
....three
....""";

2 つのクイックフィックスが提供されます。 One to remove the trailing whitespace, and one to escape the trailing whitespace so that it will not be removed by the compiler:


..String.count.=."""
....one
....two...\s
....three
....""";

2021.1 の新機能です