diff options
author | Paweł Marks <pmarks@virtuslab.com> | 2020-02-12 16:01:02 +0100 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-02-18 13:28:23 +0100 |
commit | e7730355588d1ee8c86de19c76565cc6d991f38a (patch) | |
tree | 674b673a2c874e935ddf22084db220fe27f5b89a /plugins/javadoc8/testdata/javadoc/kdocKeywordsOnMethod.kt | |
parent | bf810f5c99c8cff3e2f786a0aca11853649b851c (diff) | |
download | dokka-e7730355588d1ee8c86de19c76565cc6d991f38a.tar.gz dokka-e7730355588d1ee8c86de19c76565cc6d991f38a.tar.bz2 dokka-e7730355588d1ee8c86de19c76565cc6d991f38a.zip |
Removes old javadoc plugin and excludes old xml plugin
Diffstat (limited to 'plugins/javadoc8/testdata/javadoc/kdocKeywordsOnMethod.kt')
-rw-r--r-- | plugins/javadoc8/testdata/javadoc/kdocKeywordsOnMethod.kt | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/plugins/javadoc8/testdata/javadoc/kdocKeywordsOnMethod.kt b/plugins/javadoc8/testdata/javadoc/kdocKeywordsOnMethod.kt deleted file mode 100644 index df5bbbe0..00000000 --- a/plugins/javadoc8/testdata/javadoc/kdocKeywordsOnMethod.kt +++ /dev/null @@ -1,12 +0,0 @@ -class FireException : Exception - - -/** - * COMM - * @param a Some string - * @return value of a - * @throws FireException in case of fire - */ -@Throws(FireException::class) -fun my(a: String): String = a - |