mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
IDEA-58293 Java Formatter: Respect 'space after semicolon' setting for 'for' loop with empty 'after loop' operation
Test data is corrected
This commit is contained in:
@@ -1,11 +1,10 @@
|
||||
// "Remove variable 'i'" "true"
|
||||
import java.io.*;
|
||||
|
||||
class a {
|
||||
int k;
|
||||
private void run() {
|
||||
<caret>while (1 > 0) ;
|
||||
for (;;) ;
|
||||
for (;; ) ;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user