Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 263751
Collapse All | Expand All

(-)ui/org/eclipse/jdt/internal/ui/navigator/JavaDropAdapterAssistant.java (-5 / +1 lines)
Lines 68-73 Link Here
68
				switch (dropAdapter.getCurrentOperation()) {
68
				switch (dropAdapter.getCurrentOperation()) {
69
					case DND.DROP_MOVE :
69
					case DND.DROP_MOVE :
70
						handleDropMove(target);
70
						handleDropMove(target);
71
						dropTargetEvent.detail = DND.DROP_NONE;
71
						break;
72
						break;
72
					case DND.DROP_COPY :
73
					case DND.DROP_COPY :
73
						handleDropCopy(target);
74
						handleDropCopy(target);
Lines 79-89 Link Here
79
				ExceptionHandler.handle(e, RefactoringMessages.OpenRefactoringWizardAction_refactoring, RefactoringMessages.OpenRefactoringWizardAction_exception);
80
				ExceptionHandler.handle(e, RefactoringMessages.OpenRefactoringWizardAction_refactoring, RefactoringMessages.OpenRefactoringWizardAction_exception);
80
			} catch (InterruptedException e) {
81
			} catch (InterruptedException e) {
81
				//ok
82
				//ok
82
			} finally {
83
				// The drag source listener must not perform any operation
84
				// since this drop adapter did the remove of the source even
85
				// if we moved something.
86
				//event.detail= DND.DROP_NONE;
87
			}
83
			}
88
			clear();
84
			clear();
89
			return Status.OK_STATUS;
85
			return Status.OK_STATUS;

Return to bug 263751