diff --git a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/security/SSLContextFactory.java b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/security/SSLContextFactory.java
index 6e155eba9..289b34046 100644
--- a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/security/SSLContextFactory.java
+++ b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/security/SSLContextFactory.java
@@ -25,19 +25,19 @@
public interface SSLContextFactory {
/**
- * See javadocs for {@link SSLContext.getDefault()}
+ * See SSLContext.getDefault()
* NOTE: Rather than the using the {@link #SSLContext.setDefault SSLContext.setDefault(SSLContext)}
* to set the default SSLContext as described in the SSLContext.getDefault() javadocs, the default for the implementer is set upon construction of the service instance.
*/
SSLContext getDefault() throws NoSuchAlgorithmException, NoSuchProviderException;
/**
- * See javadocs for {@link SSLContext.getInstance(String protocol)}
+ * See SSLContext.getInstance(String protocol)
*/
SSLContext getInstance(String protocol) throws NoSuchAlgorithmException, NoSuchProviderException;
/**
- * See javadocs for {@link SSLContext.getInstance(String protocol, String provider)}
+ * See SSLContext.getInstance(String protocol, String provider)
*/
SSLContext getInstance(String protocol, String providerName) throws NoSuchAlgorithmException, NoSuchProviderException;