You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@knox.apache.org by kr...@apache.org on 2019/04/08 13:44:13 UTC

[knox] branch master updated: Fix javadoc warnings in AbstractGatewayServices

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

krisden pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/knox.git


The following commit(s) were added to refs/heads/master by this push:
     new 52194f7  Fix javadoc warnings in AbstractGatewayServices
52194f7 is described below

commit 52194f70f7f76007f7b3d2423a11ec920879a63b
Author: Kevin Risden <kr...@apache.org>
AuthorDate: Mon Apr 8 09:43:59 2019 -0400

    Fix javadoc warnings in AbstractGatewayServices
    
    Signed-off-by: Kevin Risden <kr...@apache.org>
---
 .../org/apache/knox/gateway/services/AbstractGatewayServices.java  | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/gateway-server/src/main/java/org/apache/knox/gateway/services/AbstractGatewayServices.java b/gateway-server/src/main/java/org/apache/knox/gateway/services/AbstractGatewayServices.java
index b60f49d..fd69618 100644
--- a/gateway-server/src/main/java/org/apache/knox/gateway/services/AbstractGatewayServices.java
+++ b/gateway-server/src/main/java/org/apache/knox/gateway/services/AbstractGatewayServices.java
@@ -32,14 +32,13 @@ import java.util.Set;
  * AbstractGatewayServices is an abstract implementation of {@link GatewayServices} that manages the
  * contained/registered services. See {@link ServiceType} for the different types of services that may
  * be registered.
- * <p>
+ *
  * This implementation ensures the proper ordering of registered services when starting and stopping
  * them.
- * <p>
+ *
  * {@link GatewayServices} implementations should extend this class and register relevant services
  * during the initialization process ({@link GatewayServices#init(GatewayConfig, Map)} using
  * {@link #addService(ServiceType, Service)}.
- * <p>
  */
 public abstract class AbstractGatewayServices implements GatewayServices {
 
@@ -97,7 +96,7 @@ public abstract class AbstractGatewayServices implements GatewayServices {
 
   /**
    * Add/register a service with this container.
-   * <p>
+   *
    * An implementation for a service type may be added/registered only once.  Adding a service
    * implementation for a service type that was previously added overwrites the previously added
    * implementation.