b350515237
Before post-processing was able to handle only one converting file at once So, some conversions (like (field, getter, setter) to Kotlin property) was not able to work when converting class hierarchy was split into multiple files. Also, inferring nullability for a set of files was broken #KT-19569 fixed #KT-34266 fixed #KT-32518 fixed
14 lines
228 B
Java
Vendored
14 lines
228 B
Java
Vendored
package test;
|
|
|
|
public class UserImpl implements IUser {
|
|
private final String name;
|
|
|
|
public UserImpl(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
@Override
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
} |