diff options
Diffstat (limited to 'src/DocGen/CGen.ts')
| -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; |