Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDJ Houghton2006-02-17 15:20:45 +0000
committerDJ Houghton2006-02-17 15:20:45 +0000
commit86cd021e214806581937071df1ed1fb685e543d9 (patch)
tree60b5ca0fd7d90552ff788d4886dc77ff8f2afa95
parentfdf4ae81c01c37857f9f915106f1a75586e17304 (diff)
downloadrt.equinox.bundles-86cd021e214806581937071df1ed1fb685e543d9.tar.gz
rt.equinox.bundles-86cd021e214806581937071df1ed1fb685e543d9.tar.xz
rt.equinox.bundles-86cd021e214806581937071df1ed1fb685e543d9.zip
Fixed javadoc.v20060217
-rw-r--r--bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/RegistryFactory.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/RegistryFactory.java b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/RegistryFactory.java
index 660432cbd..18e53ffc2 100644
--- a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/RegistryFactory.java
+++ b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/RegistryFactory.java
@@ -35,8 +35,6 @@ public final class RegistryFactory {
* @param userToken - user access token for the registry. Contributions made with this token are marked
* as dynamic.
* @return - new extension registry
- * @throws CoreException in case if registry start conditions are not met. The exception's status
- * message provides additional details.
*/
public static IExtensionRegistry createRegistry(RegistryStrategy strategy, Object masterToken, Object userToken) {
return new ExtensionRegistry(strategy, masterToken, userToken);
@@ -65,7 +63,7 @@ public final class RegistryFactory {
* adopters on the understanding that any code that uses this API will almost certainly
* be broken (repeatedly) as the API evolves.
* </p>
- * @param theStorageDir - array of file system directories to store cache files; might be null
+ * @param storageDir - array of file system directories to store cache files; might be null
* @param cacheReadOnly - array of read only attributes. True: cache at this location is read
* only; false: cache is read/write
* @param token - control token for the registry

Back to the top