mirror of
https://github.com/microsoft/vscode.git
synced 2026-09-11 05:04:22 +01:00
don't declare a variable that isn't used
textInput is no longer used. This removes the declaration as it is not used or needed.
This commit is contained in:
@@ -272,7 +272,7 @@ export class TextAreaInput extends Disposable {
|
||||
return;
|
||||
}
|
||||
|
||||
const [newState, typeInput] = deduceComposition(e.data);
|
||||
const [newState] = deduceComposition(e.data);
|
||||
this._textAreaState = newState;
|
||||
this._onCompositionUpdate.fire(e);
|
||||
}));
|
||||
|
||||
Reference in New Issue
Block a user