summaryrefslogtreecommitdiffstats
path: root/src/CodeParser/CodeParserController.ts
diff options
context:
space:
mode:
authorChristoph Schlosser <christoph@linux.com>2017-11-25 19:06:14 +0100
committerChristoph Schlosser <christophschlosser@users.noreply.github.com>2017-12-16 21:48:09 +0100
commitab3a71d958273915512f5da948ef73c8b5ac26d8 (patch)
tree096b71287d206f642b303698ab3d016d3d084c9f /src/CodeParser/CodeParserController.ts
parent89eeb57390b35b8185c1668a91fe99e8be077705 (diff)
downloaddoxdocgen-ab3a71d958273915512f5da948ef73c8b5ac26d8.tar.gz
Cleanup Parser interface
Diffstat (limited to 'src/CodeParser/CodeParserController.ts')
-rw-r--r--src/CodeParser/CodeParserController.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CodeParser/CodeParserController.ts b/src/CodeParser/CodeParserController.ts
index f4c07de..7eae9c0 100644
--- a/src/CodeParser/CodeParserController.ts
+++ b/src/CodeParser/CodeParserController.ts
@@ -114,6 +114,6 @@ export default class CodeParserController {
const nextLineText: string = window.activeTextEditor.document.lineAt(startReplace.line + 1).text;
const endReplace = new Position(currentPos.line + 1, nextLineText.length);
- parser.Parse(activeEditor, event).GenerateDoc(new Range(startReplace, endReplace));
+ parser.Parse(activeEditor).GenerateDoc(new Range(startReplace, endReplace));
}
}