diff options
author | Błażej Kardyś <bkardys@virtuslab.com> | 2020-01-20 19:30:36 +0100 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-01-28 22:05:38 +0100 |
commit | 172c7ab00771e3a447ea03c3a81d589eb932c3fb (patch) | |
tree | 42e2e03d499496970137e686afbbc07246649a5e /core/src/main/kotlin/pages | |
parent | 154c3f0d83ea5f9990a06962ba8cfc36a832e04d (diff) | |
download | dokka-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.kt | 2 |
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) |