diff options
| author | Christoph Schlosser <christoph@linux.com> | 2017-11-25 19:06:14 +0100 |
|---|---|---|
| committer | Christoph Schlosser <christophschlosser@users.noreply.github.com> | 2017-12-16 21:48:09 +0100 |
| commit | ab3a71d958273915512f5da948ef73c8b5ac26d8 (patch) | |
| tree | 096b71287d206f642b303698ab3d016d3d084c9f /src/CodeParser/CParser | |
| parent | 89eeb57390b35b8185c1668a91fe99e8be077705 (diff) | |
| download | doxdocgen-ab3a71d958273915512f5da948ef73c8b5ac26d8.tar.gz | |
Cleanup Parser interface
Diffstat (limited to 'src/CodeParser/CParser')
| -rw-r--r-- | src/CodeParser/CParser/CParser.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CodeParser/CParser/CParser.ts b/src/CodeParser/CParser/CParser.ts index b9219c7..9ec7e14 100644 --- a/src/CodeParser/CParser/CParser.ts +++ b/src/CodeParser/CParser/CParser.ts @@ -113,7 +113,7 @@ export default class CParser implements ICodeParser { /** * @inheritdoc */ - public Parse(activeEdit: TextEditor, event: TextDocumentContentChangeEvent): IDocGen { + public Parse(activeEdit: TextEditor): IDocGen { this.activeEditor = activeEdit; this.activeSelection = this.activeEditor.selection.active; |