debt remove some unused code

This commit is contained in:
Johannes Rieken
2017-11-15 14:38:41 +01:00
parent fc6640df6f
commit f58de870d7
2 changed files with 1 additions and 44 deletions

View File

@@ -27,11 +27,6 @@ export class MarkdownString implements IMarkdownString {
return this;
}
appendMarkdown(value: string): MarkdownString {
this.value += value;
return this;
}
appendCodeblock(langId: string, code: string): MarkdownString {
this.value += '\n```';
this.value += langId;