mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-27 17:01:31 +07:00
Java: Improved inspection "Join Declaration And Assignment" - preserve 'final' (IDEA-177132)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
// "Join declaration and assignment" "GENERIC_ERROR_OR_WARNING"
|
||||
class C {
|
||||
int foo() {
|
||||
final int <caret>a;
|
||||
a = 1;
|
||||
return a;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user