Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2008-03-10 18:00:17 +0000
committerJohn Arthorne2008-03-10 18:00:17 +0000
commit1c6fe48920149016b7ef5bb256ac0c1f8057f76c (patch)
tree211cef2fdf5234c342bcc81031d9f837172d9ed7 /bundles/org.eclipse.equinox.p2.reconciler.dropins
parent97c68d6d98fd6859012516ee7270aa70db9863b5 (diff)
downloadrt.equinox.p2-1c6fe48920149016b7ef5bb256ac0c1f8057f76c.tar.gz
rt.equinox.p2-1c6fe48920149016b7ef5bb256ac0c1f8057f76c.tar.xz
rt.equinox.p2-1c6fe48920149016b7ef5bb256ac0c1f8057f76c.zip
Disambiguate method invocation
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.reconciler.dropins')
-rw-r--r--bundles/org.eclipse.equinox.p2.reconciler.dropins/src/org/eclipse/equinox/internal/p2/reconciler/dropins/PlatformXmlListener.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.reconciler.dropins/src/org/eclipse/equinox/internal/p2/reconciler/dropins/PlatformXmlListener.java b/bundles/org.eclipse.equinox.p2.reconciler.dropins/src/org/eclipse/equinox/internal/p2/reconciler/dropins/PlatformXmlListener.java
index 8b9a67180..959733545 100644
--- a/bundles/org.eclipse.equinox.p2.reconciler.dropins/src/org/eclipse/equinox/internal/p2/reconciler/dropins/PlatformXmlListener.java
+++ b/bundles/org.eclipse.equinox.p2.reconciler.dropins/src/org/eclipse/equinox/internal/p2/reconciler/dropins/PlatformXmlListener.java
@@ -70,7 +70,7 @@ public class PlatformXmlListener extends DirectoryChangeListener {
* Parse the platform.xml file and return the list of sites.
*/
private List parseConfiguration() throws ProvisionException {
- Configuration cfg = ConfigurationParser.parse(root, null);
+ Configuration cfg = ConfigurationParser.parse(root, (URL) null);
return cfg == null ? new ArrayList(0) : cfg.getSites();
}

Back to the top