Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2004-01-08 21:19:07 +0000
committerMichael Valenta2004-01-08 21:19:07 +0000
commit8bd50bed66323d738d094b263caafc8f9f9c14a6 (patch)
tree0c26fc1cf5c1fe5974a92be528ba2ada3b07bce0
parent1850e57d3290ba1325ae98ad77cc798727d84609 (diff)
downloadeclipse.platform.team-branch_20031110_wvcm1.tar.gz
eclipse.platform.team-branch_20031110_wvcm1.tar.xz
eclipse.platform.team-branch_20031110_wvcm1.zip
*** empty log message ***branch_20031110_wvcm1
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/core/DeploymentProvider.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/DeploymentProvider.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/DeploymentProvider.java
index 5c777e001..aa6bae1a5 100644
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/DeploymentProvider.java
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/DeploymentProvider.java
@@ -67,6 +67,8 @@ public abstract class DeploymentProvider implements IExecutableExtension, IAdapt
* @see org.eclipse.core.runtime.IExecutableExtension#setInitializationData(org.eclipse.core.runtime.IConfigurationElement, java.lang.String, java.lang.Object)
*/
public void setInitializationData(IConfigurationElement config, String propertyName, Object data) throws CoreException {
+ // TODO: This doesn't work well since the Provider is created programmatically
+ // when initially mapped
this.id = config.getAttribute(DeploymentProviderDescriptor.ATT_ID);
this.name = config.getAttribute(DeploymentProviderDescriptor.ATT_NAME);
}

Back to the top