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

This commit is contained in:
Pavel Dolgov
2018-09-27 15:49:53 +03:00
parent 991b869773
commit 37a3fcab85
13 changed files with 190 additions and 177 deletions

View File

@@ -0,0 +1,8 @@
// "Join declaration and assignment" "true"
class Test {
{
String ss = "hello"; // comment A
// comment B
/*comment C*/ /*comment D*/ // comment E
}
}