Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Kaegi2008-01-29 17:07:53 +0000
committerSimon Kaegi2008-01-29 17:07:53 +0000
commit96cb8739b7c4b16ee84e6b41d97440d57c2c1809 (patch)
treecc9eee01b58296b930f434fa7bfde8b9247a9f38 /bundles/org.eclipse.equinox.p2.touchpoint.natives
parent4fc97e9fa12b21c1e1e9b7bdc4c8205ce4b709ab (diff)
downloadrt.equinox.p2-96cb8739b7c4b16ee84e6b41d97440d57c2c1809.tar.gz
rt.equinox.p2-96cb8739b7c4b16ee84e6b41d97440d57c2c1809.tar.xz
rt.equinox.p2-96cb8739b7c4b16ee84e6b41d97440d57c2c1809.zip
Bug 206077 [prov] Should we have a ProfileDelta in a provisioning plan and an associated engine phase for applying it?v20080130
Updating the Engine APIs use of Operands
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.touchpoint.natives')
-rw-r--r--bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/NativeTouchpoint.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/NativeTouchpoint.java b/bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/NativeTouchpoint.java
index faa987b2a..92ce4d395 100644
--- a/bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/NativeTouchpoint.java
+++ b/bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/NativeTouchpoint.java
@@ -35,7 +35,7 @@ public class NativeTouchpoint extends Touchpoint {
return new ProvisioningAction() {
public IStatus execute(Map parameters) {
Profile profile = (Profile) parameters.get("profile");
- Operand operand = (Operand) parameters.get("operand");
+ InstallableUnitOperand operand = (InstallableUnitOperand) parameters.get("operand");
try {
IArtifactRequest[] requests = collect(operand.second(), profile);
Collection artifactRequests = (Collection) parameters.get("artifactRequests");

Back to the top