Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2011-03-28 20:38:42 +0000
committerJohn Arthorne2011-03-28 20:38:42 +0000
commitedb01670fdc6b256156df39ee2fcc2d89ddda7ad (patch)
treeadba6a5fcd0aa544b3628fdcb6aa8058c5276d5c /bundles
parent65de3fd0312b3f43ce6c5ee4e002d8efb49e3a77 (diff)
downloadrt.equinox.p2-edb01670fdc6b256156df39ee2fcc2d89ddda7ad.tar.gz
rt.equinox.p2-edb01670fdc6b256156df39ee2fcc2d89ddda7ad.tar.xz
rt.equinox.p2-edb01670fdc6b256156df39ee2fcc2d89ddda7ad.zip
Fixed javadoc
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.equinox.p2.discovery.compatibility/src/org/eclipse/equinox/internal/p2/discovery/compatibility/util/CacheManager.java1
-rw-r--r--bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/internal/p2/repository/Credentials.java4
2 files changed, 2 insertions, 3 deletions
diff --git a/bundles/org.eclipse.equinox.p2.discovery.compatibility/src/org/eclipse/equinox/internal/p2/discovery/compatibility/util/CacheManager.java b/bundles/org.eclipse.equinox.p2.discovery.compatibility/src/org/eclipse/equinox/internal/p2/discovery/compatibility/util/CacheManager.java
index fba3ba1ef..56e30eef0 100644
--- a/bundles/org.eclipse.equinox.p2.discovery.compatibility/src/org/eclipse/equinox/internal/p2/discovery/compatibility/util/CacheManager.java
+++ b/bundles/org.eclipse.equinox.p2.discovery.compatibility/src/org/eclipse/equinox/internal/p2/discovery/compatibility/util/CacheManager.java
@@ -143,7 +143,6 @@ public class CacheManager {
/**
* Determines the local file paths of the locations potential cache file.
* @param location The location to compute the cache for
- * @param PREFIX The prefix to use for this location
* @return A {@link File} array with the cache files for JAR and XML extensions.
*/
private File getCache(URI location) {
diff --git a/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/internal/p2/repository/Credentials.java b/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/internal/p2/repository/Credentials.java
index 19f54813c..0613b69eb 100644
--- a/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/internal/p2/repository/Credentials.java
+++ b/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/internal/p2/repository/Credentials.java
@@ -63,7 +63,7 @@ public class Credentials {
* @param prompt - use <code>true</code> to prompt the user instead of
* looking at the secure preference store for login, use <code>false</code>
* to only try the secure preference store
- * @throws UserCancelledException when the user cancels the login prompt
+ * @throws LoginCanceledException when the user cancels the login prompt
* @throws CoreException if the password cannot be read or saved
* @return The authentication info.
*/
@@ -86,7 +86,7 @@ public class Credentials {
* @param prompt - if true, user will be prompted for information
* @param lastUsed - optional information used in an previous attempt to login
* @return AuthenticationInfo, or null if there was no information available
- * @throws UserCancelledException - user canceled the prompt for name/password
+ * @throws LoginCanceledException - user canceled the prompt for name/password
* @throws CoreException if there is an error
*/
public static UIServices.AuthenticationInfo forLocation(URI location, boolean prompt, UIServices.AuthenticationInfo lastUsed) throws LoginCanceledException, CoreException {

Back to the top