mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
Merge pull request #824 from mjbvz/dev/mjbvz/remove-extra-check
Remove old proposed API check
This commit is contained in:
@ -46,9 +46,5 @@ export function activate(context: vscode.ExtensionContext) {
|
||||
// Test View
|
||||
new TestView(context);
|
||||
|
||||
// Drag and Drop proposed API sample
|
||||
// This check is for older versions of VS Code that don't have the most up-to-date tree drag and drop API proposal.
|
||||
if (typeof vscode.DataTransferItem === 'function') {
|
||||
new TestViewDragAndDrop(context);
|
||||
}
|
||||
new TestViewDragAndDrop(context);
|
||||
}
|
||||
Reference in New Issue
Block a user