Cleanup (i18n; text corrected)

This commit is contained in:
Roman Shevchenko
2015-07-20 12:06:25 +03:00
parent 1de7a48a49
commit 32a6761ede
4 changed files with 12 additions and 14 deletions

View File

@@ -3,7 +3,7 @@ class XXX {
int k = 0;
int n = 2;
Runnable r = ()->{
<error descr="Variable used in lambda expression should be effectively final">k</error> = n;
<error descr="Variable used in lambda expression should be final or effectively final">k</error> = n;
};
}
}