diff options
Diffstat (limited to 'src/Locations/SingleFolderLocationService.kt')
-rw-r--r-- | src/Locations/SingleFolderLocationService.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Locations/SingleFolderLocationService.kt b/src/Locations/SingleFolderLocationService.kt index e136a6b2..c26d2b34 100644 --- a/src/Locations/SingleFolderLocationService.kt +++ b/src/Locations/SingleFolderLocationService.kt @@ -7,8 +7,8 @@ public class SingleFolderLocationService(val root: File, val extension: String) override fun withExtension(newExtension: String): LocationService = SingleFolderLocationService(root, newExtension) - override fun location(node: DocumentationNode): FileLocation { - val filename = node.path.map { identifierToFilename(it.name) }.joinToString("-") + override fun location(qualifiedName: List<String>, hasMembers: Boolean): FileLocation { + val filename = qualifiedName.map { identifierToFilename(it) }.joinToString("-") return FileLocation(File(root, filename).appendExtension(extension)) } }
\ No newline at end of file |