Java to Kotlin converter: code refactorings after review

This commit is contained in:
Valentin Kipyatkov
2014-07-10 21:22:18 +04:00
parent ec6b158c0e
commit 276d1dcf14
9 changed files with 354 additions and 234 deletions
@@ -0,0 +1,14 @@
//file
public class Test {
private final String s;
boolean b;
double d;
public Test() {
b = true;
}
public Test(String s) {
this.s = s;
}
}