aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIlya Ryzhenkov <orangy@jetbrains.com>2014-07-14 16:08:29 +0400
committerIlya Ryzhenkov <orangy@jetbrains.com>2014-07-14 16:08:29 +0400
commit5dbe1421a9011363aaca9a81105cdd067463219c (patch)
tree10c6d00719f8c5ed1aff9cd3548cb6fb791265a1 /src
parent03d0fd4e5a92ef80a17703ac0ed7e69b3bb95247 (diff)
downloaddokka-5dbe1421a9011363aaca9a81105cdd067463219c.tar.gz
dokka-5dbe1421a9011363aaca9a81105cdd067463219c.tar.bz2
dokka-5dbe1421a9011363aaca9a81105cdd067463219c.zip
Stop spamming console in FileGenerator.
Diffstat (limited to 'src')
-rw-r--r--src/Generation/FileGenerator.kt1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Generation/FileGenerator.kt b/src/Generation/FileGenerator.kt
index c1e88a76..b174368f 100644
--- a/src/Generation/FileGenerator.kt
+++ b/src/Generation/FileGenerator.kt
@@ -7,7 +7,6 @@ public class FileGenerator(val signatureGenerator: SignatureGenerator,
val formatService: FormatService) {
public fun generate(node: DocumentationNode) {
val location = locationService.location(node)
- println("@${location.file} : ${signatureGenerator.render(node)}")
val file = location.file.appendExtension(formatService.extension)
file.getParentFile()?.mkdirs()
file.writeText(formatService.format(node), defaultCharset)