aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/main/kotlin/templating/InsertTemplateExtra.kt
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/base/src/main/kotlin/templating/InsertTemplateExtra.kt')
-rw-r--r--plugins/base/src/main/kotlin/templating/InsertTemplateExtra.kt16
1 files changed, 0 insertions, 16 deletions
diff --git a/plugins/base/src/main/kotlin/templating/InsertTemplateExtra.kt b/plugins/base/src/main/kotlin/templating/InsertTemplateExtra.kt
deleted file mode 100644
index b4316e0f..00000000
--- a/plugins/base/src/main/kotlin/templating/InsertTemplateExtra.kt
+++ /dev/null
@@ -1,16 +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 org.jetbrains.dokka.model.properties.ExtraProperty
-import org.jetbrains.dokka.pages.ContentNode
-
-public data class InsertTemplateExtra(val command: Command) : ExtraProperty<ContentNode> {
-
- public companion object : ExtraProperty.Key<ContentNode, InsertTemplateExtra>
-
- override val key: ExtraProperty.Key<ContentNode, *>
- get() = Companion
-}