mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
IDEA-138306 Moving code through collapsed code breaks it
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import javax.swing.*;
|
||||
import java.lang.Override;
|
||||
import java.lang.Runnable;
|
||||
|
||||
class Test {
|
||||
void m() {
|
||||
SwingUtilities.invokeLater(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
System.out.println();
|
||||
}
|
||||
});
|
||||
<selection> System.out.println();
|
||||
<caret></selection> }
|
||||
}
|
||||
Reference in New Issue
Block a user