aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/Formats
diff options
context:
space:
mode:
authorSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2016-11-14 20:52:19 +0300
committerSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2016-11-14 20:52:19 +0300
commit875e7e5e39c6c1668729685bbc7f51bc07aed4b6 (patch)
tree5d3f75359b11e15839051523a62488f61070e947 /core/src/main/kotlin/Formats
parent47790d166100dc50d797fc0312b9b3fe0e7e9d7f (diff)
downloaddokka-875e7e5e39c6c1668729685bbc7f51bc07aed4b6.tar.gz
dokka-875e7e5e39c6c1668729685bbc7f51bc07aed4b6.tar.bz2
dokka-875e7e5e39c6c1668729685bbc7f51bc07aed4b6.zip
Post review fixes, now building text in single pass.
Diffstat (limited to 'core/src/main/kotlin/Formats')
-rw-r--r--core/src/main/kotlin/Formats/FormatDescriptor.kt2
-rw-r--r--core/src/main/kotlin/Formats/StandardFormats.kt6
2 files changed, 4 insertions, 4 deletions
diff --git a/core/src/main/kotlin/Formats/FormatDescriptor.kt b/core/src/main/kotlin/Formats/FormatDescriptor.kt
index 58c9472b..7cc50acb 100644
--- a/core/src/main/kotlin/Formats/FormatDescriptor.kt
+++ b/core/src/main/kotlin/Formats/FormatDescriptor.kt
@@ -1,7 +1,7 @@
package org.jetbrains.dokka.Formats
-import Samples.SampleProcessingService
import org.jetbrains.dokka.*
+import org.jetbrains.dokka.Samples.SampleProcessingService
import kotlin.reflect.KClass
interface FormatDescriptor {
diff --git a/core/src/main/kotlin/Formats/StandardFormats.kt b/core/src/main/kotlin/Formats/StandardFormats.kt
index 45a653b0..dabde881 100644
--- a/core/src/main/kotlin/Formats/StandardFormats.kt
+++ b/core/src/main/kotlin/Formats/StandardFormats.kt
@@ -1,9 +1,9 @@
package org.jetbrains.dokka.Formats
-import Samples.DefaultSampleProcessingService
-import Samples.KotlinWebsiteSampleProcessingService
-import Samples.SampleProcessingService
import org.jetbrains.dokka.*
+import org.jetbrains.dokka.Samples.DefaultSampleProcessingService
+import org.jetbrains.dokka.Samples.KotlinWebsiteSampleProcessingService
+import org.jetbrains.dokka.Samples.SampleProcessingService
import kotlin.reflect.KClass
abstract class KotlinFormatDescriptorBase : FormatDescriptor {