[Analysis API, FIR] migrate ::class.java -> ::class inside error messages

They seem to provide similar results and the `.java` part is redundant
This commit is contained in:
Ilya Kirillov
2023-07-17 12:08:12 +02:00
committed by Space Team
parent 24db4e62f5
commit 08400d930f
10 changed files with 11 additions and 11 deletions
@@ -187,7 +187,7 @@ public class DebugSymbolRenderer(
is KtClassLikeSymbol -> renderId(symbol.classIdIfNonLocal, symbol)
is KtCallableSymbol -> renderId(symbol.callableIdIfNonLocal, symbol)
is KtNamedSymbol -> renderValue(symbol.name, renderSymbolsFully = false)
else -> error("Unsupported symbol ${symbol::class.java.name}")
else -> error("Unsupported symbol ${symbol::class}")
}
append(")")
}