Remove unused prompt code (#10996)

This commit is contained in:
Chris LaFreniere
2020-06-18 17:23:32 -07:00
committed by GitHub
parent 88fce764d3
commit eaf753f79e
7 changed files with 1 additions and 322 deletions

View File

@@ -1,14 +0,0 @@
'use strict';
// This code is originally from https://github.com/DonJayamanne/bowerVSCode
// License: https://github.com/DonJayamanne/bowerVSCode/blob/master/LICENSE
import InputPrompt from './input';
export default class PasswordPrompt extends InputPrompt {
constructor(question: any, ignoreFocusOut?: boolean) {
super(question, ignoreFocusOut);
this._options.password = true;
}
}