Java: Improved inspection "Join Declaration And Assignment" - handle C-style array declarations (IDEA-177132)

This commit is contained in:
Pavel Dolgov
2018-10-09 15:06:48 +03:00
parent 049cea0c10
commit a2c0f2202c
5 changed files with 33 additions and 23 deletions

View File

@@ -2,9 +2,9 @@
class Test {
{
// comment A
/*comment B*/ /*comment 1*/ /*comment 2*/ /*comment 3*/ // comment 4
/*comment B*/ // comment 4
/*comment C*/
/*comment E*/
String ss = "hello" + /*comment D*/ " world"; // comment F
String /*comment 1*/ ss /*comment 2*/ /*comment 3*/ = "hello" + /*comment D*/ " world"; // comment F
}
}