misc changes in the internal builder
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / actions / WorkbenchRunnableAdapter.java
index 7c4ae96..a062bba 100644 (file)
@@ -12,7 +12,7 @@ package net.sourceforge.phpdt.internal.ui.actions;
 
 import java.lang.reflect.InvocationTargetException;
 
-import net.sourceforge.phpeclipse.PHPCore;
+import net.sourceforge.phpdt.core.JavaCore;
 
 import org.eclipse.core.resources.IWorkspaceRunnable;
 import org.eclipse.core.runtime.CoreException;
@@ -39,7 +39,7 @@ public class WorkbenchRunnableAdapter implements IRunnableWithProgress {
         */
        public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException {
                try {
-                       PHPCore.run(fWorkspaceRunnable, monitor);
+                       JavaCore.run(fWorkspaceRunnable, monitor);
                } catch (OperationCanceledException e) {
                        throw new InterruptedException(e.getMessage());
                } catch (CoreException e) {