Do not report "incomplete hierarchy" in decompiler

It's fine if the decompiler can't find some classes; it won't do anything
except render their FQ names which are fully available
This commit is contained in:
Alexander Udalov
2016-03-23 12:07:53 +03:00
parent 8d64ed7f3f
commit 2dab56db8e
@@ -29,7 +29,7 @@ class LoggingErrorReporter(private val log: Logger) : ErrorReporter {
}
override fun reportIncompleteHierarchy(descriptor: ClassDescriptor, unresolvedSuperClasses: List<String>) {
log.error("Incomplete hierarchy for $descriptor. Super classes are not found: $unresolvedSuperClasses")
// This is absolutely fine for the decompiler
}
override fun reportCannotInferVisibility(descriptor: CallableMemberDescriptor) {