diff options
| author | Rowan Goemans <RB.Goemans@student.han.nl> | 2017-10-15 03:33:01 +0200 |
|---|---|---|
| committer | Rowan Goemans <RB.Goemans@student.han.nl> | 2017-10-15 03:33:01 +0200 |
| commit | d46ea00283644ff3f222854c02f9d95a49b91e2e (patch) | |
| tree | e0b126ff341b4ea977f1f2e1c53f4e93dba106b1 /src | |
| parent | a9cc9c28dbff2048ffb99c04b4c8f3271c48e2d8 (diff) | |
| download | doxdocgen-d46ea00283644ff3f222854c02f9d95a49b91e2e.tar.gz | |
-- Removed unnecesary member variable.
Diffstat (limited to 'src')
| -rw-r--r-- | src/DocGen/CGen.ts | 3 |
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; |