Fix build.

This commit is contained in:
Zalim Bashorov
2015-04-06 17:29:58 +03:00
parent 1055c34474
commit 79739b7090
5 changed files with 14 additions and 5 deletions
@@ -34,9 +34,10 @@ object DocCommentConverter {
val html = StringBuilder {
appendJavadocElements(docComment.getDescriptionElements())
@tagsLoop
for (tag in docComment.getTags()) {
when (tag.getName()) {
"deprecated" -> continue
"deprecated" -> continue@tagsLoop
"see" -> append("@see ${convertJavadocLink(tag.content())}\n")
else -> appendJavadocElements(tag.getChildren()).append("\n")
}