From 374a9827746149a21ef1da4dd5d967f9bf5622f8 Mon Sep 17 00:00:00 2001 From: Scott Lewis Date: Tue, 25 Feb 2025 18:49:25 -0800 Subject: [PATCH] Improved javadocs --- .../org/eclipse/ecf/core/security/SSLContextFactory.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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;