Refactory: remove unused classes, imports, fields and methods.
[phpeclipse.git] / net.sourceforge.phpeclipse.externaltools / src / net / sourceforge / phpdt / externaltools / internal / model / VariableContextManager.java
index c604f13..93127ad 100644 (file)
@@ -7,14 +7,14 @@ package net.sourceforge.phpdt.externaltools.internal.model;
  http://www.eclipse.org/legal/cpl-v10.html
  **********************************************************************/
 
-import java.util.Map;
+//import java.util.Map;
 
 import net.sourceforge.phpdt.externaltools.variable.ExpandVariableContext;
 
 import org.eclipse.core.resources.IProject;
 import org.eclipse.core.resources.IResource;
 import org.eclipse.core.runtime.IAdaptable;
-import org.eclipse.core.runtime.IProgressMonitor;
+//import org.eclipse.core.runtime.IProgressMonitor;
 import org.eclipse.jface.viewers.ISelection;
 import org.eclipse.jface.viewers.IStructuredSelection;
 import org.eclipse.ui.IEditorInput;
@@ -27,7 +27,7 @@ import org.eclipse.ui.IWorkbenchPage;
 import org.eclipse.ui.IWorkbenchPart;
 import org.eclipse.ui.IWorkbenchWindow;
 import org.eclipse.ui.PlatformUI;
-import org.eclipse.ui.externaltools.internal.model.ExternalToolBuilder;
+//import org.eclipse.ui.externaltools.internal.model.ExternalToolBuilder;
 
 /**
  * Maintains the context used to expand variables. The context is based on the
@@ -163,19 +163,19 @@ public class VariableContextManager implements IWindowListener,
         * @param kind
         * @see ExternalToolBuilder#build(int, Map, IProgressMonitor)
         */
-       public void buildStarted(IProject project, int kind) {
-               fBuilding = true;
-               fProject = project;
-               fKind = kind;
-       }
+//     public void buildStarted(IProject project, int kind) {
+//             fBuilding = true;
+//             fProject = project;
+//             fKind = kind;
+//     }
 
        /**
         * Notification the building the current project has completed.
         * 
         * @see ExternalToolBuilder#build(int, Map, IProgressMonitor)
         */
-       public void buildEnded() {
-               fBuilding = false;
-               fProject = null;
-       }
+//     public void buildEnded() {
+//             fBuilding = false;
+//             fProject = null;
+//     }
 }