You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ro...@apache.org on 2021/06/15 11:54:07 UTC

[activemq-artemis] branch main updated: ARTEMIS-3155: fix javadoc error introduced in #3624

This is an automated email from the ASF dual-hosted git repository.

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git


The following commit(s) were added to refs/heads/main by this push:
     new 567c4fc  ARTEMIS-3155: fix javadoc error introduced in #3624
567c4fc is described below

commit 567c4fc16b9d9b9c79d01bc00421e8fe3da0eb67
Author: Robbie Gemmell <ro...@apache.org>
AuthorDate: Tue Jun 15 12:53:43 2021 +0100

    ARTEMIS-3155: fix javadoc error introduced in #3624
---
 .../org/apache/activemq/artemis/core/remoting/impl/ssl/SSLSupport.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/ssl/SSLSupport.java b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/ssl/SSLSupport.java
index 3af02cb..5506181 100644
--- a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/ssl/SSLSupport.java
+++ b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/ssl/SSLSupport.java
@@ -380,7 +380,7 @@ public class SSLSupport {
     *
     * @param storeProvider
     * @param storeType
-    * @return a Pair<String, String> representing the provider and type to use (in that order)
+    * @return a {@code Pair<String, String>} representing the provider and type to use (in that order)
     */
    public static Pair<String, String> getValidProviderAndType(String storeProvider, String storeType) {
       if (storeProvider != null && (storeProvider.startsWith("PKCS") || storeProvider.equals("JKS") || storeProvider.equals("JCEKS"))) {