Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rapicault2014-02-28 18:29:48 +0000
committerPascal Rapicault2014-02-28 18:29:48 +0000
commit89bce745d4ff16c24c289da378275b8489de22b2 (patch)
tree1e0cf4484fdbd12dd47ca21002f705cef66796b5
parentaaa2245b017a67febc3b5ed9a691e50368f6aaa4 (diff)
downloadrt.equinox.p2-89bce745d4ff16c24c289da378275b8489de22b2.tar.gz
rt.equinox.p2-89bce745d4ff16c24c289da378275b8489de22b2.tar.xz
rt.equinox.p2-89bce745d4ff16c24c289da378275b8489de22b2.zip
Bug 429286 - [director] Allow to specify InstallableUnitPropertiesI20140304-0800I20140303-2000I20140303-1130I20140303-0800I20140302-2000
Make the buildProvisionRequest method protected which will allow subclass (even though not recommended) to do what they need. Change-Id: I60004b629634b83fbcedfde10bc695d90382d105 Signed-off-by: Pascal Rapicault <pascal@rapicorp.com>
-rw-r--r--bundles/org.eclipse.equinox.p2.director.app/src/org/eclipse/equinox/internal/p2/director/app/DirectorApplication.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.director.app/src/org/eclipse/equinox/internal/p2/director/app/DirectorApplication.java b/bundles/org.eclipse.equinox.p2.director.app/src/org/eclipse/equinox/internal/p2/director/app/DirectorApplication.java
index 4297e09ef..e18a14490 100644
--- a/bundles/org.eclipse.equinox.p2.director.app/src/org/eclipse/equinox/internal/p2/director/app/DirectorApplication.java
+++ b/bundles/org.eclipse.equinox.p2.director.app/src/org/eclipse/equinox/internal/p2/director/app/DirectorApplication.java
@@ -284,7 +284,7 @@ public class DirectorApplication implements IApplication, ProvisioningListener {
private boolean targetAgentIsSelfAndUp = false;
private boolean noArtifactRepositorySpecified = false;
- private ProfileChangeRequest buildProvisioningRequest(IProfile profile, Collection<IInstallableUnit> installs, Collection<IInstallableUnit> uninstalls) {
+ protected ProfileChangeRequest buildProvisioningRequest(IProfile profile, Collection<IInstallableUnit> installs, Collection<IInstallableUnit> uninstalls) {
ProfileChangeRequest request = new ProfileChangeRequest(profile);
markRoots(request, installs);
markRoots(request, uninstalls);

Back to the top