IDEA-196178 Join Lines on selected text also joins not selected text

This commit is contained in:
Tagir Valeev
2019-02-01 15:10:24 +07:00
parent 9e2e512f6b
commit 1bc7264b58
4 changed files with 31 additions and 1 deletions
@@ -0,0 +1,10 @@
class Foo {
void test() {
int a = 2;
int b = 2;
if (a == b && a > b) System.out.println();
System.out.println();
}
}