Java to Kotlin converter: added auto-conversion run of Kotlin analyzer. Implemented first fix with it - redundant !! removal

This commit is contained in:
Valentin Kipyatkov
2014-07-10 15:05:54 +04:00
parent 69a5b79342
commit acc58173da
11 changed files with 107 additions and 13 deletions
@@ -0,0 +1,9 @@
//file
class A {
int foo(String s) {
if (s != null) {
return s.length();
}
return -1;
}
}