From 778e2b3f7ff62971e18a49d81a8825e5dd894c2e Mon Sep 17 00:00:00 2001 From: Ilya Ryzhenkov Date: Mon, 29 Sep 2014 20:54:59 +0400 Subject: Extract content model, make doc model independent from descriptors, parse doccomments with custom parser, some tests failing due to hanging new lines. --- src/Analysis/CommentsAPI.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Analysis/CommentsAPI.kt') diff --git a/src/Analysis/CommentsAPI.kt b/src/Analysis/CommentsAPI.kt index 5df4bd38..a17b6aa4 100644 --- a/src/Analysis/CommentsAPI.kt +++ b/src/Analysis/CommentsAPI.kt @@ -31,5 +31,5 @@ fun KDoc?.extractText(): String { comment.substring(0, comment.length - 2) else comment).trim() - }.filter { it.any() }.join("\n") + }.join("\n") } \ No newline at end of file -- cgit