Skip to content

Commit

Permalink
add returns
Browse files Browse the repository at this point in the history
  • Loading branch information
Pascal Fong Kye committed Jun 23, 2020
1 parent 497c934 commit 073936a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1407,9 +1407,9 @@ export class FileDragAndDrop implements ITreeDragAndDrop<ExplorerItem> {

private async doHandleExplorerDrop(sources: ExplorerItem[], target: ExplorerItem, isCopy: boolean): Promise<void> {
if (isCopy) {
this.doHandleExplorerDropOnCopy(sources, target);
return this.doHandleExplorerDropOnCopy(sources, target);
} else {
this.doHandleExplorerDropOnMove(sources, target);
return this.doHandleExplorerDropOnMove(sources, target);
}
}

Expand Down

0 comments on commit 073936a

Please sign in to comment.