summaryrefslogtreecommitdiffstats
path: root/src/DocGen
diff options
context:
space:
mode:
authorRowan Goemans <RB.Goemans@student.han.nl>2017-10-15 03:33:01 +0200
committerRowan Goemans <RB.Goemans@student.han.nl>2017-10-15 03:33:01 +0200
commitd46ea00283644ff3f222854c02f9d95a49b91e2e (patch)
treee0b126ff341b4ea977f1f2e1c53f4e93dba106b1 /src/DocGen
parenta9cc9c28dbff2048ffb99c04b4c8f3271c48e2d8 (diff)
downloaddoxdocgen-d46ea00283644ff3f222854c02f9d95a49b91e2e.tar.gz
-- Removed unnecesary member variable.
Diffstat (limited to 'src/DocGen')
-rw-r--r--src/DocGen/CGen.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/DocGen/CGen.ts b/src/DocGen/CGen.ts
index e281c45..0b02d09 100644
--- a/src/DocGen/CGen.ts
+++ b/src/DocGen/CGen.ts
@@ -18,7 +18,7 @@ export default class CGen implements IDocGen {
protected templateReplaceString: string;
protected activeEditor: TextEditor;
- protected position: Position;
+
protected retVals: string[];
protected params: string[];
protected tparams: string[];
@@ -39,7 +39,6 @@ export default class CGen implements IDocGen {
returnVals: string[],
) {
this.activeEditor = actEdit;
- this.position = cursorPosition;
this.templateReplaceString = "{param}";
this.params = param;
this.tparams = tparam;