X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/internal/ui/dnd/JdtViewerDropAdapter.java b/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/internal/ui/dnd/JdtViewerDropAdapter.java index 7e2143b..3840bc5 100644 --- a/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/internal/ui/dnd/JdtViewerDropAdapter.java +++ b/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/internal/ui/dnd/JdtViewerDropAdapter.java @@ -10,7 +10,9 @@ *******************************************************************************/ package net.sourceforge.phpdt.internal.ui.dnd; -import org.eclipse.jface.util.Assert; +//incastrix +//import org.eclipse.jface.text.Assert; +import org.eclipse.core.runtime.Assert; import org.eclipse.jface.viewers.StructuredViewer; import org.eclipse.swt.dnd.DND; import org.eclipse.swt.dnd.DropTargetEvent; @@ -95,16 +97,16 @@ public class JdtViewerDropAdapter implements DropTargetListener { * true if the drop adapter is supposed to show * insertion feedback. Otherwise false */ - public void showInsertionFeedback(boolean showInsertionFeedback) { - fShowInsertionFeedback = showInsertionFeedback; - } +// public void showInsertionFeedback(boolean showInsertionFeedback) { +// fShowInsertionFeedback = showInsertionFeedback; +// } /** * Returns the viewer this adapter is working on. */ - protected StructuredViewer getViewer() { - return fViewer; - } +// protected StructuredViewer getViewer() { +// return fViewer; +// } // ---- Hooks to override // -----------------------------------------------------