@@ -64,9 +64,9 @@ public boolean supports(@NotNull PsiFile file) {
6464 return Runnables .doNothing ();
6565 }
6666
67- /* pointless to change document text if it hasn't changed, plus this can interfere with
68- e.g. GoogleJavaFormattingService's output, i.e. it can overwrite the results from the main
69- formatter. */
67+ // pointless to change document text if it hasn't changed, plus this can interfere with
68+ // e.g. GoogleJavaFormattingService's output, i.e. it can overwrite the results from the main
69+ // formatter.
7070 if (text .equals (origText )) {
7171 return Runnables .doNothing ();
7272 }
@@ -76,9 +76,9 @@ public boolean supports(@NotNull PsiFile file) {
7676 documentManager .doPostponedOperationsAndUnblockDocument (document );
7777 }
7878
79- /* similarly to above, don't overwrite new document text if it has changed - we use
80- getCharsSequence() as we should have `writeAction()` (which I think means effectively a
81- write-lock) and it saves calling getText(), which apparently is expensive. */
79+ // similarly to above, don't overwrite new document text if it has changed - we use
80+ // getCharsSequence() as we should have `writeAction()` (which I think means effectively a
81+ // write-lock) and it saves calling getText(), which apparently is expensive.
8282 CharSequence newText = document .getCharsSequence ();
8383 if (CharSequence .compare (origText , newText ) != 0 ) {
8484 return ;
0 commit comments