aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/Locations/FoldersLocationService.kt
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/kotlin/Locations/FoldersLocationService.kt')
-rw-r--r--core/src/main/kotlin/Locations/FoldersLocationService.kt20
1 files changed, 0 insertions, 20 deletions
diff --git a/core/src/main/kotlin/Locations/FoldersLocationService.kt b/core/src/main/kotlin/Locations/FoldersLocationService.kt
deleted file mode 100644
index ae5301e7..00000000
--- a/core/src/main/kotlin/Locations/FoldersLocationService.kt
+++ /dev/null
@@ -1,20 +0,0 @@
-package org.jetbrains.dokka
-
-import com.google.inject.Inject
-import com.google.inject.name.Named
-import java.io.File
-//
-//class FoldersLocationService @Inject constructor(@Named("outputDir") val rootFile: File, val extension: String) : FileLocationService {
-// constructor(root: String): this(File(root), "")
-//
-// override val root: Location
-// get() = FileLocation(rootFile)
-//
-// override fun withExtension(newExtension: String): FileLocationService {
-// return if (extension.isEmpty()) FoldersLocationService(rootFile, newExtension) else this
-// }
-//
-// override fun location(qualifiedName: List<String>, hasMembers: Boolean): FileLocation {
-// return FileLocation(File(rootFile, relativePathToNode(qualifiedName, hasMembers)).appendExtension(extension))
-// }
-//}