20 lines
344 B
Plaintext
Vendored
20 lines
344 B
Plaintext
Vendored
class Test {
|
|
var serial: String = ""
|
|
get
|
|
set
|
|
var name: String = ""
|
|
get
|
|
|
|
override fun equals(other: Any?): Boolean{
|
|
if (this === other) return true
|
|
if (other?.javaClass != javaClass) return false
|
|
return true
|
|
}
|
|
|
|
override fun hashCode(): Int{
|
|
return 0
|
|
}
|
|
|
|
}
|
|
|
|
// FORCED |