You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dokka-subprojects/analysis-kotlin-symbols/src/main/kotlin/org/jetbrains/dokka/analysis/kotlin/symbols/translators/AnnotationTranslator.kt
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -84,9 +84,9 @@ internal class AnnotationTranslator(private val logger: DokkaLogger) {
84
84
val psi = annotation.psi
85
85
val location = psi?.let { getLocation(it) }
86
86
val text = psi?.text.orEmpty()
87
-
logger.warn("Unknown annotation $text in $location")
87
+
logger.warn("Unknown annotation `$text` in $location")
88
88
logger.debug(
89
-
"Unknown annotation $text in ${location}\n"+Thread.currentThread().stackTrace.drop(1)
89
+
"Unknown annotation `$text` in ${location}\n"+Thread.currentThread().stackTrace.drop(1)
Copy file name to clipboardExpand all lines: dokka-subprojects/analysis-kotlin-symbols/src/main/kotlin/org/jetbrains/dokka/analysis/kotlin/symbols/translators/TypeTranslator.kt
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -123,7 +123,7 @@ internal class TypeTranslator(
0 commit comments