LVTI: explicit variable type is redundant (IDEA-179177)

This commit is contained in:
Anna Kozlova
2017-09-25 15:05:22 +02:00
parent 1aa739139c
commit 776b8f9474
23 changed files with 272 additions and 0 deletions
@@ -0,0 +1,8 @@
// "Replace explicit type with 'var'" "true"
class Main {
void m(String[] args){
for ( var arg : args) {
}
}
}