We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ef7d91 commit 832ed6bCopy full SHA for 832ed6b
1 file changed
src/vs/base/browser/ui/findinput/findInput.ts
@@ -396,27 +396,19 @@ export class FindInput extends Widget {
396
}
397
398
public validate(): void {
399
- if (this.inputBox) {
400
- this.inputBox.validate();
401
- }
+ this.inputBox.validate();
402
403
404
public showMessage(message: InputBoxMessage): void {
405
406
- this.inputBox.showMessage(message);
407
+ this.inputBox.showMessage(message);
408
409
410
public clearMessage(): void {
411
412
- this.inputBox.hideMessage();
413
+ this.inputBox.hideMessage();
414
415
416
private clearValidation(): void {
417
418
419
420
421
422
public dispose(): void {
0 commit comments