comment cleanup

This commit is contained in:
2024-01-02 15:46:34 +05:30
parent a15429d964
commit da08fb3979

View File

@@ -11,7 +11,6 @@ export class VSCodePromptInputStrategy implements InputStrategy {
} }
const character = this.inputQueue.charCodeAt(0); const character = this.inputQueue.charCodeAt(0);
this.inputQueue = this.inputQueue.substring(1); this.inputQueue = this.inputQueue.substring(1);
//request input
return character; return character;
} }