Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rapicault2011-08-11 23:41:40 +0000
committerPascal Rapicault2011-08-11 23:43:21 +0000
commite5813a38a2656212cf9a3db5c19d5099c91a70b0 (patch)
treefa5cab9deff8f64ee04010a74d593aa523eaa1ba
parent8d48b853b8717973339a9c70fb29013b39558b61 (diff)
downloadrt.equinox.p2-e5813a38a2656212cf9a3db5c19d5099c91a70b0.tar.gz
rt.equinox.p2-e5813a38a2656212cf9a3db5c19d5099c91a70b0.tar.xz
rt.equinox.p2-e5813a38a2656212cf9a3db5c19d5099c91a70b0.zip
Fix up javadoc
-rw-r--r--bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/p2/repository/spi/AbstractRepository.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/p2/repository/spi/AbstractRepository.java b/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/p2/repository/spi/AbstractRepository.java
index 3f3ce4a62..e9a7ac375 100644
--- a/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/p2/repository/spi/AbstractRepository.java
+++ b/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/p2/repository/spi/AbstractRepository.java
@@ -81,9 +81,7 @@ public abstract class AbstractRepository<T> extends PlatformObject implements IR
/**
* Returns the location of this repository.
- * TODO: Should we use URL or URI? URL requires a protocol handler
- * to be installed in Java. Can the URL have any protocol?
- * @return the URL of the repository.
+ * @return the URI of the repository.
*/
public synchronized URI getLocation() {
return location;

Back to the top