Fix usages of javaClass property

This commit is contained in:
Pavel V. Talanov
2014-08-14 14:52:49 +04:00
parent bcaddd7143
commit 5652b7f521
3 changed files with 3 additions and 4 deletions
@@ -48,7 +48,7 @@ class HtmlKotlinVisitor: JetTreeVisitor<StringBuilder>() {
if (child is PsiComment || child is PsiWhiteSpace) {
// ignore
} else {
println("------- Child $child of type ${child.javaClass}")
println("------- Child $child of type ${child?.javaClass}")
}
child?.accept(this)
}