From 02f30b142aa467d3a24cc52a1fe3f2fed7ea1e33 Mon Sep 17 00:00:00 2001 From: Ignat Beresnev Date: Thu, 31 Aug 2023 20:16:01 +0200 Subject: Enable explicit API mode (#3139) --- .../src/main/kotlin/templates/ReplaceVersionCommandHandler.kt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'plugins/templating/src/main/kotlin/templates/ReplaceVersionCommandHandler.kt') diff --git a/plugins/templating/src/main/kotlin/templates/ReplaceVersionCommandHandler.kt b/plugins/templating/src/main/kotlin/templates/ReplaceVersionCommandHandler.kt index ec441226..28820278 100644 --- a/plugins/templating/src/main/kotlin/templates/ReplaceVersionCommandHandler.kt +++ b/plugins/templating/src/main/kotlin/templates/ReplaceVersionCommandHandler.kt @@ -12,7 +12,9 @@ import org.jsoup.nodes.Element import org.jsoup.nodes.TextNode import java.io.File -class ReplaceVersionCommandHandler(private val context: DokkaContext) : CommandHandler { +public class ReplaceVersionCommandHandler( + private val context: DokkaContext +) : CommandHandler { override fun canHandle(command: Command): Boolean = command is ReplaceVersionsCommand -- cgit