Files
Tagir Valeev 61d7024bfe [java-inspections] IDEA-126383 Shift+Ctrl+j should join multiple declarations of the same type
GitOrigin-RevId: f10e524166d16fbc55f73ed9a0a19fccd74e4739
2022-04-22 14:00:31 +00:00

7 lines
90 B
Java

class A {
public void foo() {
var a = 1;<caret>
var b = 2;
}
}
@interface X {}