diff options
Diffstat (limited to 'src/Formats/StructuredFormatService.kt')
-rw-r--r-- | src/Formats/StructuredFormatService.kt | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/Formats/StructuredFormatService.kt b/src/Formats/StructuredFormatService.kt index 458fda35..d2fbdc10 100644 --- a/src/Formats/StructuredFormatService.kt +++ b/src/Formats/StructuredFormatService.kt @@ -263,16 +263,4 @@ public abstract class StructuredFormatService(val locationService: LocationServi } } - - abstract public fun appendOutlineHeader(to: StringBuilder, node: DocumentationNode) - abstract public fun appendOutlineChildren(to: StringBuilder, nodes: Iterable<DocumentationNode>) - - public override fun appendOutline(location: Location, to: StringBuilder, nodes: Iterable<DocumentationNode>) { - for (node in nodes) { - appendOutlineHeader(to, node) - if (node.members.any()) { - appendOutlineChildren(to, node.members) - } - } - } }
\ No newline at end of file |