IDEA-93515 (Good code red: variable might not have been initialized)

This commit is contained in:
Bas Leijdekkers
2013-09-10 19:59:23 +02:00
parent f3a5bef0f6
commit 816cc8a140
2 changed files with 10 additions and 2 deletions

View File

@@ -219,5 +219,12 @@ public class X {
}
}
}
class Y {
private final int mayBeFinal;
Y() {
(mayBeFinal) = 1;
}
}