aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/pages
diff options
context:
space:
mode:
authorBłażej Kardyś <bkardys@virtuslab.com>2020-01-20 19:30:36 +0100
committerPaweł Marks <Kordyjan@users.noreply.github.com>2020-01-28 22:05:38 +0100
commit172c7ab00771e3a447ea03c3a81d589eb932c3fb (patch)
tree42e2e03d499496970137e686afbbc07246649a5e /core/src/main/kotlin/pages
parent154c3f0d83ea5f9990a06962ba8cfc36a832e04d (diff)
downloaddokka-172c7ab00771e3a447ea03c3a81d589eb932c3fb.tar.gz
dokka-172c7ab00771e3a447ea03c3a81d589eb932c3fb.tar.bz2
dokka-172c7ab00771e3a447ea03c3a81d589eb932c3fb.zip
Adding java files psi parsing
Diffstat (limited to 'core/src/main/kotlin/pages')
-rw-r--r--core/src/main/kotlin/pages/PageContentBuilder.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/kotlin/pages/PageContentBuilder.kt b/core/src/main/kotlin/pages/PageContentBuilder.kt
index cc53586e..25ddc2f1 100644
--- a/core/src/main/kotlin/pages/PageContentBuilder.kt
+++ b/core/src/main/kotlin/pages/PageContentBuilder.kt
@@ -168,7 +168,7 @@ private fun PageContentBuilder.type(t: TypeWrapper) {
link(t.constructorNamePathSegments.last(), t.dri!!)
else (this as? DefaultPageContentBuilder)?.let {
logger.error("type $t cannot be resolved")
- text("???")
+ text(t.toString())
}
list(t.arguments, prefix = "<", suffix = ">") {
type(it)