aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/src/main/kotlin/Formats/HtmlFormatService.kt6
-rw-r--r--core/src/main/kotlin/Formats/KotlinWebsiteFormatService.kt6
-rw-r--r--core/src/main/kotlin/Formats/MarkdownFormatService.kt4
-rw-r--r--core/src/main/kotlin/Formats/StructuredFormatService.kt1
4 files changed, 0 insertions, 17 deletions
diff --git a/core/src/main/kotlin/Formats/HtmlFormatService.kt b/core/src/main/kotlin/Formats/HtmlFormatService.kt
index ebc4ce221..e6635cef2 100644
--- a/core/src/main/kotlin/Formats/HtmlFormatService.kt
+++ b/core/src/main/kotlin/Formats/HtmlFormatService.kt
@@ -55,12 +55,6 @@ open class HtmlFormatService @Inject constructor(@Named("folders") locationServi
to.appendln("</table>")
}
- override fun appendTableHeader(to: StringBuilder, body: () -> Unit) {
- to.appendln("<thead>")
- body()
- to.appendln("</thead>")
- }
-
override fun appendTableBody(to: StringBuilder, body: () -> Unit) {
to.appendln("<tbody>")
body()
diff --git a/core/src/main/kotlin/Formats/KotlinWebsiteFormatService.kt b/core/src/main/kotlin/Formats/KotlinWebsiteFormatService.kt
index 56544165a..eba82a3a4 100644
--- a/core/src/main/kotlin/Formats/KotlinWebsiteFormatService.kt
+++ b/core/src/main/kotlin/Formats/KotlinWebsiteFormatService.kt
@@ -83,12 +83,6 @@ class KotlinWebsiteFormatService @Inject constructor(locationService: LocationSe
to.appendln("</table>")
}
- override fun appendTableHeader(to: StringBuilder, body: () -> Unit) {
- to.appendln("<thead>")
- body()
- to.appendln("</thead>")
- }
-
override fun appendTableBody(to: StringBuilder, body: () -> Unit) {
to.appendln("<tbody>")
body()
diff --git a/core/src/main/kotlin/Formats/MarkdownFormatService.kt b/core/src/main/kotlin/Formats/MarkdownFormatService.kt
index 214701413..9684b5c16 100644
--- a/core/src/main/kotlin/Formats/MarkdownFormatService.kt
+++ b/core/src/main/kotlin/Formats/MarkdownFormatService.kt
@@ -81,10 +81,6 @@ open class MarkdownFormatService(locationService: LocationService,
to.appendln()
}
- override fun appendTableHeader(to: StringBuilder, body: () -> Unit) {
- body()
- }
-
override fun appendTableBody(to: StringBuilder, body: () -> Unit) {
body()
}
diff --git a/core/src/main/kotlin/Formats/StructuredFormatService.kt b/core/src/main/kotlin/Formats/StructuredFormatService.kt
index 4f64baa14..bb27aab58 100644
--- a/core/src/main/kotlin/Formats/StructuredFormatService.kt
+++ b/core/src/main/kotlin/Formats/StructuredFormatService.kt
@@ -23,7 +23,6 @@ abstract class StructuredFormatService(locationService: LocationService,
abstract fun appendAnchor(to: StringBuilder, anchor: String)
abstract fun appendTable(to: StringBuilder, body: () -> Unit)
- abstract fun appendTableHeader(to: StringBuilder, body: () -> Unit)
abstract fun appendTableBody(to: StringBuilder, body: () -> Unit)
abstract fun appendTableRow(to: StringBuilder, body: () -> Unit)
abstract fun appendTableCell(to: StringBuilder, body: () -> Unit)