From ea1f4cc2987536c3ed3df5899e6cec2df890f1e6 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Thu, 19 Feb 2015 19:51:01 +0100 Subject: refactor extension setup; encapsulate extension in LocationService --- test/src/TestAPI.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/src/TestAPI.kt b/test/src/TestAPI.kt index d47770f8..0b4c2084 100644 --- a/test/src/TestAPI.kt +++ b/test/src/TestAPI.kt @@ -100,11 +100,11 @@ fun ContentNode.toTestString(): String { } class InMemoryLocation(override val path: String): Location { - override fun relativePathTo(other: Location, extension: String): String = other.path + override fun relativePathTo(other: Location): String = other.path } object InMemoryLocationService: LocationService { - override fun location(node: DocumentationNode) = InMemoryLocation(relativePathToNode(node)); + override fun location(node: DocumentationNode) = InMemoryLocation(relativePathToNode(node)) } val tempLocation = InMemoryLocation("") -- cgit