Java to Kotlin converter: added auto-conversion run of Kotlin analyzer. Implemented first fix with it - redundant !! removal
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
//file
|
||||
class A {
|
||||
int foo(String s) {
|
||||
if (s != null) {
|
||||
return s.length();
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user