removed unused dependency
[phpeclipse.git] / net.sourceforge.phpeclipse.externaltools / src / net / sourceforge / phpdt / externaltools / internal / program / launchConfigurations / BackgroundResourceRefresher.java
index 3b1136a..1625a08 100644 (file)
@@ -5,7 +5,7 @@ Copyright (c) 2002 IBM Corp. and others. All rights reserved.
 This file is made available under the terms of the Common Public License v1.0
 which accompanies this distribution, and is available at
 http://www.eclipse.org/legal/cpl-v10.html
+�
 Contributors:
 **********************************************************************/
 
@@ -13,7 +13,7 @@ import java.lang.reflect.InvocationTargetException;
 
 import net.sourceforge.phpdt.externaltools.launchConfigurations.ExternalToolsUtil;
 import net.sourceforge.phpdt.externaltools.variable.ExpandVariableContext;
-import net.sourceforge.phpeclipse.PHPeclipsePlugin;
+import net.sourceforge.phpeclipse.externaltools.ExternalToolsPlugin;
 
 import org.eclipse.core.runtime.CoreException;
 import org.eclipse.core.runtime.IProgressMonitor;
@@ -74,7 +74,7 @@ public class BackgroundResourceRefresher implements IDebugEventSetListener, Runn
         * Submits a runnable to do the refresh
         */
        protected void refresh() {
-               PHPeclipsePlugin.getStandardDisplay().asyncExec(this);
+         ExternalToolsPlugin.getStandardDisplay().asyncExec(this);
        }
        
        /** 
@@ -83,7 +83,7 @@ public class BackgroundResourceRefresher implements IDebugEventSetListener, Runn
         * @see java.lang.Runnable#run()
         */
        public void run() {
-               ProgressMonitorDialog dialog = new ProgressMonitorDialog(PHPeclipsePlugin.getStandardDisplay().getActiveShell());
+               ProgressMonitorDialog dialog = new ProgressMonitorDialog(ExternalToolsPlugin.getStandardDisplay().getActiveShell());
                try {
                        dialog.run(true, true, this);
                } catch (InvocationTargetException e) {