Converter tests:
White spaces in member lists are preserved
This commit is contained in:
@@ -4,15 +4,19 @@ open class Test() {
|
||||
public open fun hashCode(): Int {
|
||||
return System.identityHashCode(this)
|
||||
}
|
||||
|
||||
public open fun equals(o: Any?): Boolean {
|
||||
return this.identityEquals(o)
|
||||
}
|
||||
|
||||
protected open fun clone(): Any? {
|
||||
return super.clone()
|
||||
}
|
||||
|
||||
public open fun toString(): String? {
|
||||
return getJavaClass<Test>.getName() + '@' + Integer.toHexString(hashCode())
|
||||
}
|
||||
|
||||
protected open fun finalize() {
|
||||
super.finalize()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user