Minor: don't use java.lang.Integer in common test

This commit is contained in:
Dmitry Petrov
2017-07-07 13:58:05 +03:00
parent aa7db727ba
commit 0962aec456
@@ -2,7 +2,7 @@
class A(val z: Int) : Comparable<A> {
override fun compareTo(other: A): Int {
return Integer.compare(z, other.z)
return z.compareTo(other.z)
}
}