[java] fixes formatting around soft keywords

This commit is contained in:
Roman Shevchenko
2017-10-02 17:56:14 +02:00
parent 37820d7df0
commit d8b2de2b28
6 changed files with 37 additions and 45 deletions

View File

@@ -1,8 +1,6 @@
// "Replace explicit type with 'var'" "true"
class Main {
void m(String[] args){
for ( var arg : args) {
void m(String[] args) {
for (var arg : args) ;
}
}
}