Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2008-11-05 17:11:27 +0000
committerDarin Wright2008-11-05 17:11:27 +0000
commit3c51ff888064c1069a57348d548508d1c45c80be (patch)
treed1b255bf033bf5ee0abbf856908a0eb4bb75fea3 /org.eclipse.debug.ui/ui/org/eclipse/debug
parent9006bce22a5549e203793b58911983f378fb5149 (diff)
downloadeclipse.platform.debug-3c51ff888064c1069a57348d548508d1c45c80be.tar.gz
eclipse.platform.debug-3c51ff888064c1069a57348d548508d1c45c80be.tar.xz
eclipse.platform.debug-3c51ff888064c1069a57348d548508d1c45c80be.zip
Bug 252992 - Move {workspace_loc} to debug.core plug-in
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/stringsubstitution/WorkspaceResolver.java35
1 files changed, 0 insertions, 35 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/stringsubstitution/WorkspaceResolver.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/stringsubstitution/WorkspaceResolver.java
deleted file mode 100644
index 79d24fd9f..000000000
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/stringsubstitution/WorkspaceResolver.java
+++ /dev/null
@@ -1,35 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2005 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.debug.internal.ui.stringsubstitution;
-
-
-import org.eclipse.core.resources.IResource;
-import org.eclipse.core.variables.IDynamicVariable;
-
-/**
- * Resolves the <code>${workspace_loc}</code> variable. The variable resolves to the
- * location of the workspace. If an argument is provided, it is interpretted as a
- * workspace relative path to a specific resource.
- *
- * @since 3.0
- */
-public class WorkspaceResolver extends ResourceResolver {
-
- /**
- * The <code>${workspace_loc}</code> variable does not use the selected resource.
- *
- * @see org.eclipse.debug.internal.ui.stringsubstitution.ResourceResolver#getSelectedResource(org.eclipse.debug.internal.core.stringsubstitution.IContextVariable)
- */
- protected IResource getSelectedResource(IDynamicVariable variable) {
- return getWorkspaceRoot();
- }
-
-}

Back to the top