Java: Convert intention "Join Declaration And Assignment" into inspection - minor fixes after review (IDEA-178919)

This commit is contained in:
Pavel Dolgov
2018-10-02 15:12:37 +03:00
parent 0a1bac12c0
commit acbb991ce1
3 changed files with 44 additions and 25 deletions
@@ -0,0 +1,8 @@
// "Join declaration and assignment" "false"
class C {
void test() {
String t;
String <caret>s;
t = "foo";
}
}