diff options
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/main/kotlin/Formats/StructuredFormatService.kt | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/core/src/main/kotlin/Formats/StructuredFormatService.kt b/core/src/main/kotlin/Formats/StructuredFormatService.kt index 70cefbdb..70cf4311 100644 --- a/core/src/main/kotlin/Formats/StructuredFormatService.kt +++ b/core/src/main/kotlin/Formats/StructuredFormatService.kt @@ -780,10 +780,9 @@ abstract class StructuredOutputBuilder(val to: StringBuilder, // appendPlatforms(platforms) // } // } - appendSummarySignatures(summarized) } appendTableCell { - + appendSummarySignatures(summarized) } } } @@ -830,14 +829,13 @@ abstract class StructuredOutputBuilder(val to: StringBuilder, if (summarized.platformPlacement == Summarized.PlatformPlacement.Summary) { appendPlatforms(summary.platforms) } - appendContent(summary.content) - appendSoftLineBreak() for (signature in summary.signatures) { appendSignatures( signature, summarized.platformPlacement == Summarized.PlatformPlacement.Signature ) } + appendContent(summary.content) } } |