Fixed KT-5276 J2K: Convert calls to getClass() to javaClass property access

#KT-5276 Fixed
This commit is contained in:
Valentin Kipyatkov
2014-07-11 13:57:59 +04:00
parent ecb984352e
commit 3527b186bf
4 changed files with 27 additions and 0 deletions
@@ -0,0 +1,6 @@
class A {
void foo(Object o) {
System.out.println(o.getClass());
System.out.println(getClass());
}
}