aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/main/kotlin/templating/Command.kt
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/base/src/main/kotlin/templating/Command.kt')
-rw-r--r--plugins/base/src/main/kotlin/templating/Command.kt15
1 files changed, 0 insertions, 15 deletions
diff --git a/plugins/base/src/main/kotlin/templating/Command.kt b/plugins/base/src/main/kotlin/templating/Command.kt
deleted file mode 100644
index 94ed00d4..00000000
--- a/plugins/base/src/main/kotlin/templating/Command.kt
+++ /dev/null
@@ -1,15 +0,0 @@
-/*
- * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
- */
-
-package org.jetbrains.dokka.base.templating
-
-import com.fasterxml.jackson.annotation.JsonTypeInfo
-import com.fasterxml.jackson.annotation.JsonTypeInfo.Id.CLASS
-
-@JsonTypeInfo(use = CLASS)
-public interface Command
-
-public abstract class SubstitutionCommand : Command {
- public abstract val pattern: String
-}