Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bundles/org.eclipse.equinox.p2.core/src/org/eclipse/equinox/p2/core/IPool.java2
-rw-r--r--bundles/org.eclipse.equinox.p2.engine/src/org/eclipse/equinox/p2/engine/IProfileRegistry.java1
2 files changed, 1 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.p2.core/src/org/eclipse/equinox/p2/core/IPool.java b/bundles/org.eclipse.equinox.p2.core/src/org/eclipse/equinox/p2/core/IPool.java
index f1b2f0f71..849b41dea 100644
--- a/bundles/org.eclipse.equinox.p2.core/src/org/eclipse/equinox/p2/core/IPool.java
+++ b/bundles/org.eclipse.equinox.p2.core/src/org/eclipse/equinox/p2/core/IPool.java
@@ -25,7 +25,7 @@ package org.eclipse.equinox.p2.core;
public interface IPool<T> {
/**
- * Returns the first object from this pool which is {@link #equals(Object)} to the given object. If the pool
+ * Returns the first object from this pool which is equal to the given object. If the pool
* contains no such object then the object is added to the pool and returned. If the object is <code>null</code>,
* <code>null</code> is returned.
*
diff --git a/bundles/org.eclipse.equinox.p2.engine/src/org/eclipse/equinox/p2/engine/IProfileRegistry.java b/bundles/org.eclipse.equinox.p2.engine/src/org/eclipse/equinox/p2/engine/IProfileRegistry.java
index a89fed00d..a46164c73 100644
--- a/bundles/org.eclipse.equinox.p2.engine/src/org/eclipse/equinox/p2/engine/IProfileRegistry.java
+++ b/bundles/org.eclipse.equinox.p2.engine/src/org/eclipse/equinox/p2/engine/IProfileRegistry.java
@@ -178,7 +178,6 @@ public interface IProfileRegistry {
* Return an empty map if there was a problem accessing the properties.
*
* @param id the profile identifier
- * @param timestamp the profile timestamp
* @param key the property key
* @return A map of timestamp and values for the given key. An empty map if no states define the given key.
* @throws NullPointerException if the profile id or key is <code>null</code>.

Back to the top