diff options
author | Krystian Ujma <krystianujma@gmail.com> | 2019-03-11 17:12:44 +0100 |
---|---|---|
committer | Simon Ogorodnik <simon.ogorodnik@gmail.com> | 2019-03-11 19:12:44 +0300 |
commit | 52b303d4251d54ddf9f09330f902621689a50f5d (patch) | |
tree | 7bf4c515ed7d215279f340c7f01013105bf2f174 /core/src/main | |
parent | 61b126692bb2ede06911ae1c493e8417f0bbe49d (diff) | |
download | dokka-52b303d4251d54ddf9f09330f902621689a50f5d.tar.gz dokka-52b303d4251d54ddf9f09330f902621689a50f5d.tar.bz2 dokka-52b303d4251d54ddf9f09330f902621689a50f5d.zip |
Fix not null annotation java-as-html bug (#442)
Diffstat (limited to 'core/src/main')
-rw-r--r-- | core/src/main/kotlin/Java/JavaPsiDocumentationBuilder.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/kotlin/Java/JavaPsiDocumentationBuilder.kt b/core/src/main/kotlin/Java/JavaPsiDocumentationBuilder.kt index 1ef601d3..e26fa13e 100644 --- a/core/src/main/kotlin/Java/JavaPsiDocumentationBuilder.kt +++ b/core/src/main/kotlin/Java/JavaPsiDocumentationBuilder.kt @@ -311,7 +311,7 @@ class JavaPsiDocumentationBuilder : JavaDocumentationBuilder { } fun PsiAnnotation.build(): DocumentationNode { - val node = DocumentationNode(nameReferenceElement?.text ?: "<?>", Content.Empty, NodeKind.Annotation) + val node = DocumentationNode(qualifiedName?.substringAfterLast(".") ?: "<?>", Content.Empty, NodeKind.Annotation) parameterList.attributes.forEach { val parameter = DocumentationNode(it.name ?: "value", Content.Empty, NodeKind.Parameter) val value = it.value |