Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDJ Houghton2008-11-14 22:02:19 +0000
committerDJ Houghton2008-11-14 22:02:19 +0000
commit23c93c72276386305c69218ea95dfa5965e698c3 (patch)
treeac324afed23c0279aa822af44a8df0e287a99366 /bundles/org.eclipse.equinox.p2.director.app
parenteadc09b9944e2d8ec06e3515d8f94151abc42de4 (diff)
downloadrt.equinox.p2-23c93c72276386305c69218ea95dfa5965e698c3.tar.gz
rt.equinox.p2-23c93c72276386305c69218ea95dfa5965e698c3.tar.xz
rt.equinox.p2-23c93c72276386305c69218ea95dfa5965e698c3.zip
Fixed ambiguous URIUtil references.
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.director.app')
-rw-r--r--bundles/org.eclipse.equinox.p2.director.app/src_ant/org/eclipse/equinox/p2/director/app/ant/DirectorTask.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.p2.director.app/src_ant/org/eclipse/equinox/p2/director/app/ant/DirectorTask.java b/bundles/org.eclipse.equinox.p2.director.app/src_ant/org/eclipse/equinox/p2/director/app/ant/DirectorTask.java
index e01d6056c..894d80610 100644
--- a/bundles/org.eclipse.equinox.p2.director.app/src_ant/org/eclipse/equinox/p2/director/app/ant/DirectorTask.java
+++ b/bundles/org.eclipse.equinox.p2.director.app/src_ant/org/eclipse/equinox/p2/director/app/ant/DirectorTask.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007 IBM Corporation and others.
+ * Copyright (c) 2007, 2008 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
@@ -16,7 +16,7 @@ import java.net.URISyntaxException;
import java.util.ArrayList;
import java.util.List;
import org.apache.tools.ant.*;
-import org.eclipse.equinox.internal.p2.core.helpers.URIUtil;
+import org.eclipse.core.runtime.URIUtil;
import org.eclipse.equinox.internal.p2.director.app.Application;
import org.osgi.framework.Version;

Back to the top