diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2016-06-30 20:40:07 +0200 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2016-06-30 20:40:07 +0200 |
commit | ae642832a1a27aa98e34195047f0c08e325f23de (patch) | |
tree | b84cce88468edce5929e0b1b5b8eeee7094b84d6 /core | |
parent | d8362187f13ff6b53ed6d6f17f836a4e3f70ae97 (diff) | |
download | dokka-ae642832a1a27aa98e34195047f0c08e325f23de.tar.gz dokka-ae642832a1a27aa98e34195047f0c08e325f23de.tar.bz2 dokka-ae642832a1a27aa98e34195047f0c08e325f23de.zip |
delete unused method
Diffstat (limited to 'core')
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 ebc4ce22..e6635cef 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 56544165..eba82a3a 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 21470141..9684b5c1 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 4f64baa1..bb27aab5 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) |